| 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> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 #include "ppapi/c/ppp_instance.h" | 26 #include "ppapi/c/ppp_instance.h" |
| 27 #include "ppapi/shared_impl/function_group_base.h" | 27 #include "ppapi/shared_impl/function_group_base.h" |
| 28 #include "ppapi/shared_impl/instance_impl.h" | 28 #include "ppapi/shared_impl/instance_impl.h" |
| 29 #include "ppapi/shared_impl/ppp_instance_combined.h" | 29 #include "ppapi/shared_impl/ppp_instance_combined.h" |
| 30 #include "ppapi/thunk/ppb_instance_api.h" | 30 #include "ppapi/thunk/ppb_instance_api.h" |
| 31 #include "third_party/skia/include/core/SkBitmap.h" | 31 #include "third_party/skia/include/core/SkBitmap.h" |
| 32 #include "third_party/skia/include/core/SkRefCnt.h" | 32 #include "third_party/skia/include/core/SkRefCnt.h" |
| 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCanvas.h" |
| 34 #include "ui/gfx/rect.h" | 34 #include "ui/gfx/rect.h" |
| 35 #include "webkit/plugins/ppapi/plugin_delegate.h" | 35 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 36 #include "webkit/plugins/ppapi/plugin_module.h" |
| 36 | 37 |
| 37 struct PP_Var; | 38 struct PP_Var; |
| 38 struct PPP_Find_Dev; | 39 struct PPP_Find_Dev; |
| 39 struct PPP_InputEvent; | 40 struct PPP_InputEvent; |
| 40 struct PPP_Instance_Private; | 41 struct PPP_Instance_Private; |
| 41 struct PPP_Messaging; | 42 struct PPP_Messaging; |
| 42 struct PPP_MouseLock_Dev; | 43 struct PPP_MouseLock_Dev; |
| 43 struct PPP_Pdf; | 44 struct PPP_Pdf; |
| 44 struct PPP_PolicyUpdate_Dev; | 45 struct PPP_PolicyUpdate_Dev; |
| 45 struct PPP_Selection_Dev; | 46 struct PPP_Selection_Dev; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 63 class Resource; | 64 class Resource; |
| 64 } | 65 } |
| 65 | 66 |
| 66 namespace webkit { | 67 namespace webkit { |
| 67 namespace ppapi { | 68 namespace ppapi { |
| 68 | 69 |
| 69 class FullscreenContainer; | 70 class FullscreenContainer; |
| 70 class MessageChannel; | 71 class MessageChannel; |
| 71 class ObjectVar; | 72 class ObjectVar; |
| 72 class PluginDelegate; | 73 class PluginDelegate; |
| 73 class PluginModule; | |
| 74 class PluginObject; | 74 class PluginObject; |
| 75 class PPB_Graphics2D_Impl; | 75 class PPB_Graphics2D_Impl; |
| 76 class PPB_Graphics3D_Impl; | 76 class PPB_Graphics3D_Impl; |
| 77 class PPB_ImageData_Impl; | 77 class PPB_ImageData_Impl; |
| 78 class PPB_Surface3D_Impl; | 78 class PPB_Surface3D_Impl; |
| 79 class PPB_URLLoader_Impl; | 79 class PPB_URLLoader_Impl; |
| 80 class PPB_URLRequestInfo_Impl; | 80 class PPB_URLRequestInfo_Impl; |
| 81 | 81 |
| 82 // Represents one time a plugin appears on one web page. | 82 // Represents one time a plugin appears on one web page. |
| 83 // | 83 // |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 | 486 |
| 487 PP_CompletionCallback lock_mouse_callback_; | 487 PP_CompletionCallback lock_mouse_callback_; |
| 488 | 488 |
| 489 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 489 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
| 490 }; | 490 }; |
| 491 | 491 |
| 492 } // namespace ppapi | 492 } // namespace ppapi |
| 493 } // namespace webkit | 493 } // namespace webkit |
| 494 | 494 |
| 495 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 495 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
| OLD | NEW |