| 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 "webkit/plugins/ppapi/plugin_delegate.h" | 23 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 24 #include "webkit/plugins/ppapi/time_conversion.h" | |
| 25 | 24 |
| 26 class FilePath; | 25 class FilePath; |
| 27 class MessageLoop; | 26 class MessageLoop; |
| 28 struct PPB_Core; | 27 struct PPB_Core; |
| 29 typedef void* NPIdentifier; | 28 typedef void* NPIdentifier; |
| 30 | 29 |
| 31 namespace base { | 30 namespace base { |
| 32 class WaitableEvent; | 31 class WaitableEvent; |
| 33 } | 32 } |
| 34 | 33 |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 // Lazily created by GetWebKitForwarding. | 207 // Lazily created by GetWebKitForwarding. |
| 209 scoped_ptr< ::ppapi::WebKitForwarding> webkit_forwarding_; | 208 scoped_ptr< ::ppapi::WebKitForwarding> webkit_forwarding_; |
| 210 | 209 |
| 211 DISALLOW_COPY_AND_ASSIGN(PluginModule); | 210 DISALLOW_COPY_AND_ASSIGN(PluginModule); |
| 212 }; | 211 }; |
| 213 | 212 |
| 214 } // namespace ppapi | 213 } // namespace ppapi |
| 215 } // namespace webkit | 214 } // namespace webkit |
| 216 | 215 |
| 217 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ | 216 #endif // WEBKIT_PLUGINS_PPAPI_PLUGIN_MODULE_H_ |
| OLD | NEW |