OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/string16.h" | 16 #include "base/string16.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 #include "ppapi/c/dev/pp_cursor_type_dev.h" | 18 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
19 #include "ppapi/c/dev/ppp_printing_dev.h" | 19 #include "ppapi/c/dev/ppp_printing_dev.h" |
| 20 #include "ppapi/c/dev/ppp_find_dev.h" |
| 21 #include "ppapi/c/dev/ppp_selection_dev.h" |
| 22 #include "ppapi/c/dev/ppp_zoom_dev.h" |
20 #include "ppapi/c/pp_completion_callback.h" | 23 #include "ppapi/c/pp_completion_callback.h" |
21 #include "ppapi/c/pp_instance.h" | 24 #include "ppapi/c/pp_instance.h" |
22 #include "ppapi/c/pp_resource.h" | 25 #include "ppapi/c/pp_resource.h" |
23 #include "ppapi/c/pp_var.h" | 26 #include "ppapi/c/pp_var.h" |
24 #include "ppapi/c/ppb_input_event.h" | 27 #include "ppapi/c/ppb_input_event.h" |
| 28 #include "ppapi/c/ppp_graphics_3d.h" |
| 29 #include "ppapi/c/ppp_input_event.h" |
| 30 #include "ppapi/c/ppp_messaging.h" |
| 31 #include "ppapi/c/ppp_mouse_lock.h" |
| 32 #include "ppapi/c/private/ppp_instance_private.h" |
25 #include "ppapi/shared_impl/function_group_base.h" | 33 #include "ppapi/shared_impl/function_group_base.h" |
26 #include "ppapi/shared_impl/ppb_instance_shared.h" | 34 #include "ppapi/shared_impl/ppb_instance_shared.h" |
27 #include "ppapi/thunk/ppb_instance_api.h" | 35 #include "ppapi/thunk/ppb_instance_api.h" |
28 #include "third_party/skia/include/core/SkRefCnt.h" | 36 #include "third_party/skia/include/core/SkRefCnt.h" |
29 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" | 37 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
31 #include "ui/base/ime/text_input_type.h" | 39 #include "ui/base/ime/text_input_type.h" |
32 #include "ui/gfx/rect.h" | 40 #include "ui/gfx/rect.h" |
33 #include "webkit/plugins/ppapi/plugin_delegate.h" | 41 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 42 #include "webkit/plugins/ppapi/ppp_pdf.h" |
34 #include "webkit/plugins/webkit_plugins_export.h" | 43 #include "webkit/plugins/webkit_plugins_export.h" |
35 | 44 |
36 struct PP_Point; | 45 struct PP_Point; |
37 struct PPP_Find_Dev; | |
38 struct PPP_Graphics3D; | |
39 struct PPP_InputEvent; | |
40 struct PPP_Instance_Private; | |
41 struct PPP_Messaging; | |
42 struct PPP_MouseLock; | |
43 struct PPP_Pdf; | |
44 struct PPP_Selection_Dev; | |
45 struct PPP_Zoom_Dev; | |
46 | 46 |
47 class SkBitmap; | 47 class SkBitmap; |
48 class TransportDIB; | 48 class TransportDIB; |
49 | 49 |
50 namespace WebKit { | 50 namespace WebKit { |
51 class WebInputEvent; | 51 class WebInputEvent; |
52 class WebPluginContainer; | 52 class WebPluginContainer; |
53 struct WebCompositionUnderline; | 53 struct WebCompositionUnderline; |
54 struct WebCursorInfo; | 54 struct WebCursorInfo; |
55 } | 55 } |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 | 604 |
605 PP_CompletionCallback lock_mouse_callback_; | 605 PP_CompletionCallback lock_mouse_callback_; |
606 | 606 |
607 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 607 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
608 }; | 608 }; |
609 | 609 |
610 } // namespace ppapi | 610 } // namespace ppapi |
611 } // namespace webkit | 611 } // namespace webkit |
612 | 612 |
613 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 613 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |