| 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 <map> | |
| 9 #include <set> | 8 #include <set> |
| 10 #include <string> | 9 #include <string> |
| 11 #include <vector> | 10 #include <vector> |
| 12 | 11 |
| 13 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 14 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 15 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 17 #include "base/string16.h" | 16 #include "base/string16.h" |
| 18 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
| 19 #include "ppapi/c/dev/pp_cursor_type_dev.h" | 18 #include "ppapi/c/dev/pp_cursor_type_dev.h" |
| 20 #include "ppapi/c/dev/ppp_printing_dev.h" | 19 #include "ppapi/c/dev/ppp_printing_dev.h" |
| 21 #include "ppapi/c/pp_completion_callback.h" | 20 #include "ppapi/c/pp_completion_callback.h" |
| 22 #include "ppapi/c/pp_instance.h" | 21 #include "ppapi/c/pp_instance.h" |
| 23 #include "ppapi/c/pp_resource.h" | 22 #include "ppapi/c/pp_resource.h" |
| 24 #include "ppapi/c/pp_var.h" | 23 #include "ppapi/c/pp_var.h" |
| 25 #include "ppapi/c/ppb_input_event.h" | 24 #include "ppapi/c/ppb_input_event.h" |
| 26 #include "ppapi/c/ppp_graphics_3d.h" | |
| 27 #include "ppapi/c/ppp_instance.h" | |
| 28 #include "ppapi/shared_impl/function_group_base.h" | 25 #include "ppapi/shared_impl/function_group_base.h" |
| 29 #include "ppapi/shared_impl/ppb_instance_shared.h" | 26 #include "ppapi/shared_impl/ppb_instance_shared.h" |
| 30 #include "ppapi/shared_impl/ppp_instance_combined.h" | |
| 31 #include "ppapi/thunk/ppb_instance_api.h" | 27 #include "ppapi/thunk/ppb_instance_api.h" |
| 32 #include "third_party/skia/include/core/SkBitmap.h" | |
| 33 #include "third_party/skia/include/core/SkRefCnt.h" | 28 #include "third_party/skia/include/core/SkRefCnt.h" |
| 34 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCanvas.h" |
| 35 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" | 30 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebString.h" |
| 36 #include "ui/base/ime/text_input_type.h" | 31 #include "ui/base/ime/text_input_type.h" |
| 37 #include "ui/gfx/rect.h" | 32 #include "ui/gfx/rect.h" |
| 38 #include "webkit/plugins/ppapi/plugin_delegate.h" | 33 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 39 #include "webkit/plugins/webkit_plugins_export.h" | 34 #include "webkit/plugins/webkit_plugins_export.h" |
| 40 | 35 |
| 41 struct PP_Var; | 36 struct PP_Point; |
| 42 struct PPP_Find_Dev; | 37 struct PPP_Find_Dev; |
| 38 struct PPP_Graphics3D; |
| 43 struct PPP_InputEvent; | 39 struct PPP_InputEvent; |
| 44 struct PPP_Instance_Private; | 40 struct PPP_Instance_Private; |
| 45 struct PPP_Messaging; | 41 struct PPP_Messaging; |
| 46 struct PPP_MouseLock; | 42 struct PPP_MouseLock; |
| 47 struct PPP_Pdf; | 43 struct PPP_Pdf; |
| 48 struct PPP_Selection_Dev; | 44 struct PPP_Selection_Dev; |
| 49 struct PPP_Zoom_Dev; | 45 struct PPP_Zoom_Dev; |
| 50 | 46 |
| 51 class SkBitmap; | 47 class SkBitmap; |
| 52 class TransportDIB; | 48 class TransportDIB; |
| (...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 608 | 604 |
| 609 PP_CompletionCallback lock_mouse_callback_; | 605 PP_CompletionCallback lock_mouse_callback_; |
| 610 | 606 |
| 611 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 607 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 612 }; | 608 }; |
| 613 | 609 |
| 614 } // namespace ppapi | 610 } // namespace ppapi |
| 615 } // namespace webkit | 611 } // namespace webkit |
| 616 | 612 |
| 617 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 613 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |