| 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_file_system.h" | 68 #include "ppapi/c/ppb_file_system.h" |
| 69 #include "ppapi/c/ppb_fullscreen.h" | 69 #include "ppapi/c/ppb_fullscreen.h" |
| 70 #include "ppapi/c/ppb_graphics_2d.h" | 70 #include "ppapi/c/ppb_graphics_2d.h" |
| 71 #include "ppapi/c/ppb_graphics_3d.h" | 71 #include "ppapi/c/ppb_graphics_3d.h" |
| 72 #include "ppapi/c/ppb_host_resolver.h" | 72 #include "ppapi/c/ppb_host_resolver.h" |
| 73 #include "ppapi/c/ppb_image_data.h" | 73 #include "ppapi/c/ppb_image_data.h" |
| 74 #include "ppapi/c/ppb_instance.h" | 74 #include "ppapi/c/ppb_instance.h" |
| 75 #include "ppapi/c/ppb_media_stream_audio_track.h" | 75 #include "ppapi/c/ppb_media_stream_audio_track.h" |
| 76 #include "ppapi/c/ppb_media_stream_video_track.h" | 76 #include "ppapi/c/ppb_media_stream_video_track.h" |
| 77 #include "ppapi/c/ppb_messaging.h" | 77 #include "ppapi/c/ppb_messaging.h" |
| 78 #include "ppapi/c/ppb_mojo.h" |
| 78 #include "ppapi/c/ppb_mouse_cursor.h" | 79 #include "ppapi/c/ppb_mouse_cursor.h" |
| 79 #include "ppapi/c/ppb_mouse_lock.h" | 80 #include "ppapi/c/ppb_mouse_lock.h" |
| 80 #include "ppapi/c/ppb_net_address.h" | 81 #include "ppapi/c/ppb_net_address.h" |
| 81 #include "ppapi/c/ppb_network_list.h" | 82 #include "ppapi/c/ppb_network_list.h" |
| 82 #include "ppapi/c/ppb_network_monitor.h" | 83 #include "ppapi/c/ppb_network_monitor.h" |
| 83 #include "ppapi/c/ppb_network_proxy.h" | 84 #include "ppapi/c/ppb_network_proxy.h" |
| 84 #include "ppapi/c/ppb_opengles2.h" | 85 #include "ppapi/c/ppb_opengles2.h" |
| 85 #include "ppapi/c/ppb_tcp_socket.h" | 86 #include "ppapi/c/ppb_tcp_socket.h" |
| 86 #include "ppapi/c/ppb_text_input_controller.h" | 87 #include "ppapi/c/ppb_text_input_controller.h" |
| 87 #include "ppapi/c/ppb_udp_socket.h" | 88 #include "ppapi/c/ppb_udp_socket.h" |
| (...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 720 channel_handle, | 721 channel_handle, |
| 721 peer_pid, | 722 peer_pid, |
| 722 plugin_child_id, | 723 plugin_child_id, |
| 723 false)) // is_external = false | 724 false)) // is_external = false |
| 724 return scoped_refptr<PluginModule>(); | 725 return scoped_refptr<PluginModule>(); |
| 725 | 726 |
| 726 return module; | 727 return module; |
| 727 } | 728 } |
| 728 | 729 |
| 729 } // namespace content | 730 } // namespace content |
| OLD | NEW |