| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ | 6 #define CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 typedef void* NPIdentifier; | 27 typedef void* NPIdentifier; |
| 28 | 28 |
| 29 class GURL; | 29 class GURL; |
| 30 | 30 |
| 31 namespace base { | 31 namespace base { |
| 32 class FilePath; | 32 class FilePath; |
| 33 } | 33 } |
| 34 | 34 |
| 35 namespace ppapi { | 35 namespace ppapi { |
| 36 class CallbackTracker; | 36 class CallbackTracker; |
| 37 class WebKitForwarding; | |
| 38 } // namespace ppapi | 37 } // namespace ppapi |
| 39 | 38 |
| 40 namespace IPC { | 39 namespace IPC { |
| 41 struct ChannelHandle; | 40 struct ChannelHandle; |
| 42 } | 41 } |
| 43 | 42 |
| 44 namespace blink { | 43 namespace blink { |
| 45 class WebPluginContainer; | 44 class WebPluginContainer; |
| 46 } // namespace blink | 45 } // namespace blink |
| 47 | 46 |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 PluginInstanceSet instances_; | 269 PluginInstanceSet instances_; |
| 271 | 270 |
| 272 PP_Bool (*reserve_instance_id_)(PP_Module, PP_Instance); | 271 PP_Bool (*reserve_instance_id_)(PP_Module, PP_Instance); |
| 273 | 272 |
| 274 DISALLOW_COPY_AND_ASSIGN(PluginModule); | 273 DISALLOW_COPY_AND_ASSIGN(PluginModule); |
| 275 }; | 274 }; |
| 276 | 275 |
| 277 } // namespace content | 276 } // namespace content |
| 278 | 277 |
| 279 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ | 278 #endif // CONTENT_RENDERER_PEPPER_PLUGIN_MODULE_H_ |
| OLD | NEW |