OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ | 5 #ifndef WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ |
6 #define WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ | 6 #define WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/native_library.h" | 12 #include "base/native_library.h" |
13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
14 #include "base/weak_ptr.h" | 14 #include "base/weak_ptr.h" |
15 #include "third_party/ppapi/c/pp_module.h" | 15 #include "ppapi/c/pp_module.h" |
16 #include "third_party/ppapi/c/ppb.h" | 16 #include "ppapi/c/ppb.h" |
17 | 17 |
18 class FilePath; | 18 class FilePath; |
19 typedef struct NPObject NPObject; | 19 typedef struct NPObject NPObject; |
20 struct PPB_Core; | 20 struct PPB_Core; |
21 typedef void* NPIdentifier; | 21 typedef void* NPIdentifier; |
22 | 22 |
23 namespace pepper { | 23 namespace pepper { |
24 | 24 |
25 class ObjectVar; | 25 class ObjectVar; |
26 class PluginDelegate; | 26 class PluginDelegate; |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 | 133 |
134 typedef std::set<PluginObject*> PluginObjectSet; | 134 typedef std::set<PluginObject*> PluginObjectSet; |
135 PluginObjectSet live_plugin_objects_; | 135 PluginObjectSet live_plugin_objects_; |
136 | 136 |
137 DISALLOW_COPY_AND_ASSIGN(PluginModule); | 137 DISALLOW_COPY_AND_ASSIGN(PluginModule); |
138 }; | 138 }; |
139 | 139 |
140 } // namespace pepper | 140 } // namespace pepper |
141 | 141 |
142 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ | 142 #endif // WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_MODULE_H_ |
OLD | NEW |