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