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 #include "content/renderer/pepper/plugin_module.h" | 5 #include "content/renderer/pepper/plugin_module.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" | 23 #include "content/renderer/pepper/pepper_plugin_instance_impl.h" |
24 #include "content/renderer/pepper/pepper_plugin_registry.h" | 24 #include "content/renderer/pepper/pepper_plugin_registry.h" |
25 #include "content/renderer/pepper/ppb_image_data_impl.h" | 25 #include "content/renderer/pepper/ppb_image_data_impl.h" |
26 #include "content/renderer/pepper/ppb_proxy_impl.h" | 26 #include "content/renderer/pepper/ppb_proxy_impl.h" |
27 #include "content/renderer/pepper/ppb_scrollbar_impl.h" | 27 #include "content/renderer/pepper/ppb_scrollbar_impl.h" |
28 #include "content/renderer/pepper/ppb_uma_private_impl.h" | 28 #include "content/renderer/pepper/ppb_uma_private_impl.h" |
29 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" | 29 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" |
30 #include "content/renderer/pepper/ppb_video_decoder_impl.h" | 30 #include "content/renderer/pepper/ppb_video_decoder_impl.h" |
31 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" | 31 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" |
32 #include "content/renderer/render_view_impl.h" | 32 #include "content/renderer/render_view_impl.h" |
| 33 #include "ppapi/c/dev/ppb_alarms_dev.h" |
33 #include "ppapi/c/dev/ppb_audio_input_dev.h" | 34 #include "ppapi/c/dev/ppb_audio_input_dev.h" |
34 #include "ppapi/c/dev/ppb_buffer_dev.h" | 35 #include "ppapi/c/dev/ppb_buffer_dev.h" |
35 #include "ppapi/c/dev/ppb_char_set_dev.h" | 36 #include "ppapi/c/dev/ppb_char_set_dev.h" |
36 #include "ppapi/c/dev/ppb_crypto_dev.h" | 37 #include "ppapi/c/dev/ppb_crypto_dev.h" |
37 #include "ppapi/c/dev/ppb_cursor_control_dev.h" | 38 #include "ppapi/c/dev/ppb_cursor_control_dev.h" |
38 #include "ppapi/c/dev/ppb_device_ref_dev.h" | 39 #include "ppapi/c/dev/ppb_device_ref_dev.h" |
39 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 40 #include "ppapi/c/dev/ppb_file_chooser_dev.h" |
40 #include "ppapi/c/dev/ppb_find_dev.h" | 41 #include "ppapi/c/dev/ppb_find_dev.h" |
41 #include "ppapi/c/dev/ppb_font_dev.h" | 42 #include "ppapi/c/dev/ppb_font_dev.h" |
42 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" | 43 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" |
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
739 channel_handle, | 740 channel_handle, |
740 peer_pid, | 741 peer_pid, |
741 plugin_child_id, | 742 plugin_child_id, |
742 false)) // is_external = false | 743 false)) // is_external = false |
743 return scoped_refptr<PluginModule>(); | 744 return scoped_refptr<PluginModule>(); |
744 | 745 |
745 return module; | 746 return module; |
746 } | 747 } |
747 | 748 |
748 } // namespace content | 749 } // namespace content |
OLD | NEW |