| 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 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 channel_handle, | 737 channel_handle, |
| 737 peer_pid, | 738 peer_pid, |
| 738 plugin_child_id, | 739 plugin_child_id, |
| 739 false)) // is_external = false | 740 false)) // is_external = false |
| 740 return scoped_refptr<PluginModule>(); | 741 return scoped_refptr<PluginModule>(); |
| 741 | 742 |
| 742 return module; | 743 return module; |
| 743 } | 744 } |
| 744 | 745 |
| 745 } // namespace content | 746 } // namespace content |
| OLD | NEW |