OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
17 #include "base/string16.h" | 17 #include "base/string16.h" |
18 #include "cc/texture_layer_client.h" | 18 #include "cc/layers/texture_layer_client.h" |
19 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
20 #include "ppapi/c/dev/pp_cursor_type_dev.h" | 20 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
| 21 #include "ppapi/c/dev/ppp_find_dev.h" |
21 #include "ppapi/c/dev/ppp_printing_dev.h" | 22 #include "ppapi/c/dev/ppp_printing_dev.h" |
22 #include "ppapi/c/dev/ppp_find_dev.h" | |
23 #include "ppapi/c/dev/ppp_selection_dev.h" | 23 #include "ppapi/c/dev/ppp_selection_dev.h" |
24 #include "ppapi/c/dev/ppp_text_input_dev.h" | 24 #include "ppapi/c/dev/ppp_text_input_dev.h" |
25 #include "ppapi/c/dev/ppp_zoom_dev.h" | 25 #include "ppapi/c/dev/ppp_zoom_dev.h" |
26 #include "ppapi/c/pp_completion_callback.h" | 26 #include "ppapi/c/pp_completion_callback.h" |
27 #include "ppapi/c/pp_instance.h" | 27 #include "ppapi/c/pp_instance.h" |
28 #include "ppapi/c/pp_resource.h" | 28 #include "ppapi/c/pp_resource.h" |
29 #include "ppapi/c/pp_time.h" | 29 #include "ppapi/c/pp_time.h" |
30 #include "ppapi/c/pp_var.h" | 30 #include "ppapi/c/pp_var.h" |
31 #include "ppapi/c/ppb_audio_config.h" | 31 #include "ppapi/c/ppb_audio_config.h" |
| 32 #include "ppapi/c/ppb_gamepad.h" |
32 #include "ppapi/c/ppb_input_event.h" | 33 #include "ppapi/c/ppb_input_event.h" |
33 #include "ppapi/c/ppb_gamepad.h" | |
34 #include "ppapi/c/ppp_graphics_3d.h" | 34 #include "ppapi/c/ppp_graphics_3d.h" |
35 #include "ppapi/c/ppp_input_event.h" | 35 #include "ppapi/c/ppp_input_event.h" |
36 #include "ppapi/c/ppp_messaging.h" | 36 #include "ppapi/c/ppp_messaging.h" |
37 #include "ppapi/c/ppp_mouse_lock.h" | 37 #include "ppapi/c/ppp_mouse_lock.h" |
38 #include "ppapi/c/private/ppb_content_decryptor_private.h" | 38 #include "ppapi/c/private/ppb_content_decryptor_private.h" |
39 #include "ppapi/c/private/ppb_nacl_private.h" | 39 #include "ppapi/c/private/ppb_nacl_private.h" |
40 #include "ppapi/c/private/ppp_instance_private.h" | 40 #include "ppapi/c/private/ppp_instance_private.h" |
41 #include "ppapi/shared_impl/ppb_instance_shared.h" | 41 #include "ppapi/shared_impl/ppb_instance_shared.h" |
42 #include "ppapi/shared_impl/ppb_view_shared.h" | 42 #include "ppapi/shared_impl/ppb_view_shared.h" |
43 #include "ppapi/shared_impl/singleton_resource_id.h" | 43 #include "ppapi/shared_impl/singleton_resource_id.h" |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; | 778 scoped_ptr<ContentDecryptorDelegate> content_decryptor_delegate_; |
779 | 779 |
780 friend class PpapiPluginInstanceTest; | 780 friend class PpapiPluginInstanceTest; |
781 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 781 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
782 }; | 782 }; |
783 | 783 |
784 } // namespace ppapi | 784 } // namespace ppapi |
785 } // namespace webkit | 785 } // namespace webkit |
786 | 786 |
787 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 787 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |