| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 #include "ppapi/c/ppb_core.h" | 68 #include "ppapi/c/ppb_core.h" |
| 69 #include "ppapi/c/ppb_file_io.h" | 69 #include "ppapi/c/ppb_file_io.h" |
| 70 #include "ppapi/c/ppb_file_ref.h" | 70 #include "ppapi/c/ppb_file_ref.h" |
| 71 #include "ppapi/c/ppb_file_system.h" | 71 #include "ppapi/c/ppb_file_system.h" |
| 72 #include "ppapi/c/ppb_fullscreen.h" | 72 #include "ppapi/c/ppb_fullscreen.h" |
| 73 #include "ppapi/c/ppb_graphics_2d.h" | 73 #include "ppapi/c/ppb_graphics_2d.h" |
| 74 #include "ppapi/c/ppb_graphics_3d.h" | 74 #include "ppapi/c/ppb_graphics_3d.h" |
| 75 #include "ppapi/c/ppb_host_resolver.h" | 75 #include "ppapi/c/ppb_host_resolver.h" |
| 76 #include "ppapi/c/ppb_image_data.h" | 76 #include "ppapi/c/ppb_image_data.h" |
| 77 #include "ppapi/c/ppb_instance.h" | 77 #include "ppapi/c/ppb_instance.h" |
| 78 #include "ppapi/c/ppb_media_stream_video_track.h" |
| 78 #include "ppapi/c/ppb_messaging.h" | 79 #include "ppapi/c/ppb_messaging.h" |
| 79 #include "ppapi/c/ppb_mouse_cursor.h" | 80 #include "ppapi/c/ppb_mouse_cursor.h" |
| 80 #include "ppapi/c/ppb_mouse_lock.h" | 81 #include "ppapi/c/ppb_mouse_lock.h" |
| 81 #include "ppapi/c/ppb_net_address.h" | 82 #include "ppapi/c/ppb_net_address.h" |
| 82 #include "ppapi/c/ppb_network_list.h" | 83 #include "ppapi/c/ppb_network_list.h" |
| 83 #include "ppapi/c/ppb_network_monitor.h" | 84 #include "ppapi/c/ppb_network_monitor.h" |
| 84 #include "ppapi/c/ppb_network_proxy.h" | 85 #include "ppapi/c/ppb_network_proxy.h" |
| 85 #include "ppapi/c/ppb_opengles2.h" | 86 #include "ppapi/c/ppb_opengles2.h" |
| 86 #include "ppapi/c/ppb_tcp_socket.h" | 87 #include "ppapi/c/ppb_tcp_socket.h" |
| 87 #include "ppapi/c/ppb_text_input_controller.h" | 88 #include "ppapi/c/ppb_text_input_controller.h" |
| 88 #include "ppapi/c/ppb_udp_socket.h" | 89 #include "ppapi/c/ppb_udp_socket.h" |
| 89 #include "ppapi/c/ppb_url_loader.h" | 90 #include "ppapi/c/ppb_url_loader.h" |
| 90 #include "ppapi/c/ppb_url_request_info.h" | 91 #include "ppapi/c/ppb_url_request_info.h" |
| 91 #include "ppapi/c/ppb_url_response_info.h" | 92 #include "ppapi/c/ppb_url_response_info.h" |
| 92 #include "ppapi/c/ppb_var.h" | 93 #include "ppapi/c/ppb_var.h" |
| 93 #include "ppapi/c/ppb_var_array.h" | 94 #include "ppapi/c/ppb_var_array.h" |
| 94 #include "ppapi/c/ppb_var_array_buffer.h" | 95 #include "ppapi/c/ppb_var_array_buffer.h" |
| 95 #include "ppapi/c/ppb_var_dictionary.h" | 96 #include "ppapi/c/ppb_var_dictionary.h" |
| 97 #include "ppapi/c/ppb_video_frame.h" |
| 96 #include "ppapi/c/ppb_view.h" | 98 #include "ppapi/c/ppb_view.h" |
| 97 #include "ppapi/c/ppp.h" | 99 #include "ppapi/c/ppp.h" |
| 98 #include "ppapi/c/ppp_instance.h" | 100 #include "ppapi/c/ppp_instance.h" |
| 99 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" | 101 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" |
| 100 #include "ppapi/c/private/ppb_file_io_private.h" | 102 #include "ppapi/c/private/ppb_file_io_private.h" |
| 101 #include "ppapi/c/private/ppb_file_ref_private.h" | 103 #include "ppapi/c/private/ppb_file_ref_private.h" |
| 102 #include "ppapi/c/private/ppb_flash.h" | 104 #include "ppapi/c/private/ppb_flash.h" |
| 103 #include "ppapi/c/private/ppb_flash_clipboard.h" | 105 #include "ppapi/c/private/ppb_flash_clipboard.h" |
| 104 #include "ppapi/c/private/ppb_flash_device_id.h" | 106 #include "ppapi/c/private/ppb_flash_device_id.h" |
| 105 #include "ppapi/c/private/ppb_flash_drm.h" | 107 #include "ppapi/c/private/ppb_flash_drm.h" |
| (...skipping 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 channel_handle, | 738 channel_handle, |
| 737 peer_pid, | 739 peer_pid, |
| 738 plugin_child_id, | 740 plugin_child_id, |
| 739 false)) // is_external = false | 741 false)) // is_external = false |
| 740 return scoped_refptr<PluginModule>(); | 742 return scoped_refptr<PluginModule>(); |
| 741 | 743 |
| 742 return module; | 744 return module; |
| 743 } | 745 } |
| 744 | 746 |
| 745 } // namespace content | 747 } // namespace content |
| OLD | NEW |