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 #include "webkit/glue/plugins/pepper_plugin_module.h" | 5 #include "webkit/glue/plugins/pepper_plugin_module.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/message_loop.h" | 10 #include "base/message_loop.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 #include "third_party/ppapi/c/ppb_widget.h" | 31 #include "third_party/ppapi/c/ppb_widget.h" |
32 #include "third_party/ppapi/c/ppp.h" | 32 #include "third_party/ppapi/c/ppp.h" |
33 #include "third_party/ppapi/c/ppp_instance.h" | 33 #include "third_party/ppapi/c/ppp_instance.h" |
34 #include "third_party/ppapi/c/pp_module.h" | 34 #include "third_party/ppapi/c/pp_module.h" |
35 #include "third_party/ppapi/c/pp_resource.h" | 35 #include "third_party/ppapi/c/pp_resource.h" |
36 #include "third_party/ppapi/c/pp_var.h" | 36 #include "third_party/ppapi/c/pp_var.h" |
37 #include "webkit/glue/plugins/pepper_audio.h" | 37 #include "webkit/glue/plugins/pepper_audio.h" |
38 #include "webkit/glue/plugins/pepper_buffer.h" | 38 #include "webkit/glue/plugins/pepper_buffer.h" |
39 #include "webkit/glue/plugins/pepper_device_context_2d.h" | 39 #include "webkit/glue/plugins/pepper_device_context_2d.h" |
40 #include "webkit/glue/plugins/pepper_directory_reader.h" | 40 #include "webkit/glue/plugins/pepper_directory_reader.h" |
| 41 #include "webkit/glue/plugins/pepper_file_chooser.h" |
41 #include "webkit/glue/plugins/pepper_file_io.h" | 42 #include "webkit/glue/plugins/pepper_file_io.h" |
42 #include "webkit/glue/plugins/pepper_file_ref.h" | 43 #include "webkit/glue/plugins/pepper_file_ref.h" |
43 #include "webkit/glue/plugins/pepper_file_system.h" | 44 #include "webkit/glue/plugins/pepper_file_system.h" |
44 #include "webkit/glue/plugins/pepper_font.h" | 45 #include "webkit/glue/plugins/pepper_font.h" |
45 #include "webkit/glue/plugins/pepper_image_data.h" | 46 #include "webkit/glue/plugins/pepper_image_data.h" |
46 #include "webkit/glue/plugins/pepper_plugin_instance.h" | 47 #include "webkit/glue/plugins/pepper_plugin_instance.h" |
47 #include "webkit/glue/plugins/pepper_private.h" | 48 #include "webkit/glue/plugins/pepper_private.h" |
48 #include "webkit/glue/plugins/pepper_resource_tracker.h" | 49 #include "webkit/glue/plugins/pepper_resource_tracker.h" |
49 #include "webkit/glue/plugins/pepper_scrollbar.h" | 50 #include "webkit/glue/plugins/pepper_scrollbar.h" |
50 #include "webkit/glue/plugins/pepper_url_loader.h" | 51 #include "webkit/glue/plugins/pepper_url_loader.h" |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 if (strcmp(name, PPB_WIDGET_INTERFACE) == 0) | 187 if (strcmp(name, PPB_WIDGET_INTERFACE) == 0) |
187 return Widget::GetInterface(); | 188 return Widget::GetInterface(); |
188 if (strcmp(name, PPB_SCROLLBAR_INTERFACE) == 0) | 189 if (strcmp(name, PPB_SCROLLBAR_INTERFACE) == 0) |
189 return Scrollbar::GetInterface(); | 190 return Scrollbar::GetInterface(); |
190 if (strcmp(name, PPB_FONT_INTERFACE) == 0) | 191 if (strcmp(name, PPB_FONT_INTERFACE) == 0) |
191 return Font::GetInterface(); | 192 return Font::GetInterface(); |
192 if (strcmp(name, PPB_FIND_INTERFACE) == 0) | 193 if (strcmp(name, PPB_FIND_INTERFACE) == 0) |
193 return PluginInstance::GetFindInterface(); | 194 return PluginInstance::GetFindInterface(); |
194 if (strcmp(name, PPB_PRIVATE_INTERFACE) == 0) | 195 if (strcmp(name, PPB_PRIVATE_INTERFACE) == 0) |
195 return Private::GetInterface(); | 196 return Private::GetInterface(); |
| 197 if (strcmp(name, PPB_FILECHOOSER_INTERFACE) == 0) |
| 198 return FileChooser::GetInterface(); |
| 199 |
196 | 200 |
197 // Only support the testing interface when the command line switch is | 201 // Only support the testing interface when the command line switch is |
198 // specified. This allows us to prevent people from (ab)using this interface | 202 // specified. This allows us to prevent people from (ab)using this interface |
199 // in production code. | 203 // in production code. |
200 if (strcmp(name, PPB_TESTING_INTERFACE) == 0) { | 204 if (strcmp(name, PPB_TESTING_INTERFACE) == 0) { |
201 if (CommandLine::ForCurrentProcess()->HasSwitch("enable-pepper-testing")) | 205 if (CommandLine::ForCurrentProcess()->HasSwitch("enable-pepper-testing")) |
202 return &testing_interface; | 206 return &testing_interface; |
203 } | 207 } |
204 return NULL; | 208 return NULL; |
205 } | 209 } |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
360 | 364 |
361 void PluginModule::InstanceCreated(PluginInstance* instance) { | 365 void PluginModule::InstanceCreated(PluginInstance* instance) { |
362 instances_.insert(instance); | 366 instances_.insert(instance); |
363 } | 367 } |
364 | 368 |
365 void PluginModule::InstanceDeleted(PluginInstance* instance) { | 369 void PluginModule::InstanceDeleted(PluginInstance* instance) { |
366 instances_.erase(instance); | 370 instances_.erase(instance); |
367 } | 371 } |
368 | 372 |
369 } // namespace pepper | 373 } // namespace pepper |
OLD | NEW |