| 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_PLUGIN_MODULE_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/file_path.h" | 13 #include "base/file_path.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/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/native_library.h" | 17 #include "base/native_library.h" |
| 18 #include "base/process.h" | 18 #include "base/process.h" |
| 19 #include "ppapi/c/pp_bool.h" | 19 #include "ppapi/c/pp_bool.h" |
| 20 #include "ppapi/c/pp_instance.h" | 20 #include "ppapi/c/pp_instance.h" |
| 21 #include "ppapi/c/pp_module.h" | 21 #include "ppapi/c/pp_module.h" |
| 22 #include "ppapi/c/ppb.h" | 22 #include "ppapi/c/ppb.h" |
| 23 #include "ppapi/c/ppb_core.h" |
| 23 #include "webkit/plugins/ppapi/plugin_delegate.h" | 24 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 24 #include "webkit/plugins/webkit_plugins_export.h" | 25 #include "webkit/plugins/webkit_plugins_export.h" |
| 25 | 26 |
| 26 class FilePath; | 27 class FilePath; |
| 27 struct PPB_Core; | |
| 28 typedef void* NPIdentifier; | 28 typedef void* NPIdentifier; |
| 29 | 29 |
| 30 namespace ppapi { | 30 namespace ppapi { |
| 31 class CallbackTracker; | 31 class CallbackTracker; |
| 32 class WebKitForwarding; | 32 class WebKitForwarding; |
| 33 } // namespace ppapi | 33 } // namespace ppapi |
| 34 | 34 |
| 35 namespace webkit { | 35 namespace webkit { |
| 36 namespace ppapi { | 36 namespace ppapi { |
| 37 | 37 |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 // Lazily created by GetWebKitForwarding. | 199 // Lazily created by GetWebKitForwarding. |
| 200 scoped_ptr< ::ppapi::WebKitForwarding> webkit_forwarding_; | 200 scoped_ptr< ::ppapi::WebKitForwarding> webkit_forwarding_; |
| 201 | 201 |
| 202 DISALLOW_COPY_AND_ASSIGN(PluginModule); | 202 DISALLOW_COPY_AND_ASSIGN(PluginModule); |
| 203 }; | 203 }; |
| 204 | 204 |
| 205 } // namespace ppapi | 205 } // namespace ppapi |
| 206 } // namespace webkit | 206 } // namespace webkit |
| 207 | 207 |
| 208 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ | 208 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ |
| OLD | NEW |