| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 #include <string.h> | 9 #include <string.h> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "content/renderer/pepper/pepper_plugin_registry.h" | 28 #include "content/renderer/pepper/pepper_plugin_registry.h" |
| 29 #include "content/renderer/pepper/plugin_instance_throttler_impl.h" | 29 #include "content/renderer/pepper/plugin_instance_throttler_impl.h" |
| 30 #include "content/renderer/pepper/ppapi_preferences_builder.h" | 30 #include "content/renderer/pepper/ppapi_preferences_builder.h" |
| 31 #include "content/renderer/pepper/ppb_image_data_impl.h" | 31 #include "content/renderer/pepper/ppb_image_data_impl.h" |
| 32 #include "content/renderer/pepper/ppb_proxy_impl.h" | 32 #include "content/renderer/pepper/ppb_proxy_impl.h" |
| 33 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" | 33 #include "content/renderer/pepper/ppb_var_deprecated_impl.h" |
| 34 #include "content/renderer/pepper/ppb_video_decoder_impl.h" | 34 #include "content/renderer/pepper/ppb_video_decoder_impl.h" |
| 35 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" | 35 #include "content/renderer/pepper/renderer_ppapi_host_impl.h" |
| 36 #include "content/renderer/render_view_impl.h" | 36 #include "content/renderer/render_view_impl.h" |
| 37 #include "ppapi/c/dev/ppb_audio_input_dev.h" | 37 #include "ppapi/c/dev/ppb_audio_input_dev.h" |
| 38 #include "ppapi/c/dev/ppb_audio_output_dev.h" |
| 38 #include "ppapi/c/dev/ppb_buffer_dev.h" | 39 #include "ppapi/c/dev/ppb_buffer_dev.h" |
| 39 #include "ppapi/c/dev/ppb_char_set_dev.h" | 40 #include "ppapi/c/dev/ppb_char_set_dev.h" |
| 40 #include "ppapi/c/dev/ppb_crypto_dev.h" | 41 #include "ppapi/c/dev/ppb_crypto_dev.h" |
| 41 #include "ppapi/c/dev/ppb_cursor_control_dev.h" | 42 #include "ppapi/c/dev/ppb_cursor_control_dev.h" |
| 42 #include "ppapi/c/dev/ppb_device_ref_dev.h" | 43 #include "ppapi/c/dev/ppb_device_ref_dev.h" |
| 43 #include "ppapi/c/dev/ppb_file_chooser_dev.h" | 44 #include "ppapi/c/dev/ppb_file_chooser_dev.h" |
| 44 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" | 45 #include "ppapi/c/dev/ppb_gles_chromium_texture_mapping_dev.h" |
| 45 #include "ppapi/c/dev/ppb_memory_dev.h" | 46 #include "ppapi/c/dev/ppb_memory_dev.h" |
| 46 #include "ppapi/c/dev/ppb_opengles2ext_dev.h" | 47 #include "ppapi/c/dev/ppb_opengles2ext_dev.h" |
| 47 #include "ppapi/c/dev/ppb_printing_dev.h" | 48 #include "ppapi/c/dev/ppb_printing_dev.h" |
| (...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 channel_handle, | 817 channel_handle, |
| 817 peer_pid, | 818 peer_pid, |
| 818 plugin_child_id, | 819 plugin_child_id, |
| 819 false)) // is_external = false | 820 false)) // is_external = false |
| 820 return scoped_refptr<PluginModule>(); | 821 return scoped_refptr<PluginModule>(); |
| 821 | 822 |
| 822 return module; | 823 return module; |
| 823 } | 824 } |
| 824 | 825 |
| 825 } // namespace content | 826 } // namespace content |
| OLD | NEW |