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/shared_impl/ppb_view_shared.h" | 35 #include "ppapi/shared_impl/ppb_view_shared.h" |
28 #include "ppapi/thunk/ppb_instance_api.h" | 36 #include "ppapi/thunk/ppb_instance_api.h" |
29 #include "third_party/skia/include/core/SkRefCnt.h" | 37 #include "third_party/skia/include/core/SkRefCnt.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
31 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
32 #include "ui/base/ime/text_input_type.h" | 40 #include "ui/base/ime/text_input_type.h" |
33 #include "ui/gfx/rect.h" | 41 #include "ui/gfx/rect.h" |
34 #include "webkit/plugins/ppapi/plugin_delegate.h" | 42 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 43 #include "webkit/plugins/ppapi/ppp_pdf.h" |
35 #include "webkit/plugins/webkit_plugins_export.h" | 44 #include "webkit/plugins/webkit_plugins_export.h" |
36 | 45 |
37 struct PP_Point; | 46 struct PP_Point; |
38 struct PPP_Find_Dev; | |
39 struct PPP_Graphics3D; | |
40 struct PPP_InputEvent; | |
41 struct PPP_Instance_Private; | |
42 struct PPP_Messaging; | |
43 struct PPP_MouseLock; | |
44 struct PPP_Pdf; | |
45 struct PPP_Selection_Dev; | |
46 struct PPP_Zoom_Dev; | |
47 | 47 |
48 class SkBitmap; | 48 class SkBitmap; |
49 class TransportDIB; | 49 class TransportDIB; |
50 | 50 |
51 namespace WebKit { | 51 namespace WebKit { |
52 class WebInputEvent; | 52 class WebInputEvent; |
53 class WebPluginContainer; | 53 class WebPluginContainer; |
54 struct WebCompositionUnderline; | 54 struct WebCompositionUnderline; |
55 struct WebCursorInfo; | 55 struct WebCursorInfo; |
56 } | 56 } |
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 | 606 |
607 PP_CompletionCallback lock_mouse_callback_; | 607 PP_CompletionCallback lock_mouse_callback_; |
608 | 608 |
609 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 609 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
610 }; | 610 }; |
611 | 611 |
612 } // namespace ppapi | 612 } // namespace ppapi |
613 } // namespace webkit | 613 } // namespace webkit |
614 | 614 |
615 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 615 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |