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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 namespace ppapi { | 60 namespace ppapi { |
61 struct PPP_Instance_Combined; | 61 struct PPP_Instance_Combined; |
62 class Resource; | 62 class Resource; |
63 } | 63 } |
64 | 64 |
65 namespace webkit { | 65 namespace webkit { |
66 namespace ppapi { | 66 namespace ppapi { |
67 | 67 |
68 class FullscreenContainer; | 68 class FullscreenContainer; |
69 class MessageChannel; | 69 class MessageChannel; |
70 class ObjectVar; | |
71 class PluginDelegate; | 70 class PluginDelegate; |
72 class PluginModule; | 71 class PluginModule; |
73 class PluginObject; | 72 class PluginObject; |
74 class PPB_Graphics2D_Impl; | 73 class PPB_Graphics2D_Impl; |
75 class PPB_Graphics3D_Impl; | 74 class PPB_Graphics3D_Impl; |
76 class PPB_ImageData_Impl; | 75 class PPB_ImageData_Impl; |
77 class PPB_Surface3D_Impl; | 76 class PPB_Surface3D_Impl; |
78 class PPB_URLLoader_Impl; | 77 class PPB_URLLoader_Impl; |
79 class PPB_URLRequestInfo_Impl; | 78 class PPB_URLRequestInfo_Impl; |
80 | 79 |
(...skipping 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 | 606 |
608 PP_CompletionCallback lock_mouse_callback_; | 607 PP_CompletionCallback lock_mouse_callback_; |
609 | 608 |
610 DISALLOW_COPY_AND_ASSIGN(PluginInstance); | 609 DISALLOW_COPY_AND_ASSIGN(PluginInstance); |
611 }; | 610 }; |
612 | 611 |
613 } // namespace ppapi | 612 } // namespace ppapi |
614 } // namespace webkit | 613 } // namespace webkit |
615 | 614 |
616 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ | 615 #endif // WEBKIT_PLUGINS_PPAPI_PPAPI_PLUGIN_INSTANCE_H_ |
OLD | NEW |