| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 #include "ppapi/c/ppb_tcp_socket.h" | 84 #include "ppapi/c/ppb_tcp_socket.h" |
| 85 #include "ppapi/c/ppb_text_input_controller.h" | 85 #include "ppapi/c/ppb_text_input_controller.h" |
| 86 #include "ppapi/c/ppb_udp_socket.h" | 86 #include "ppapi/c/ppb_udp_socket.h" |
| 87 #include "ppapi/c/ppb_url_loader.h" | 87 #include "ppapi/c/ppb_url_loader.h" |
| 88 #include "ppapi/c/ppb_url_request_info.h" | 88 #include "ppapi/c/ppb_url_request_info.h" |
| 89 #include "ppapi/c/ppb_url_response_info.h" | 89 #include "ppapi/c/ppb_url_response_info.h" |
| 90 #include "ppapi/c/ppb_var.h" | 90 #include "ppapi/c/ppb_var.h" |
| 91 #include "ppapi/c/ppb_var_array.h" | 91 #include "ppapi/c/ppb_var_array.h" |
| 92 #include "ppapi/c/ppb_var_array_buffer.h" | 92 #include "ppapi/c/ppb_var_array_buffer.h" |
| 93 #include "ppapi/c/ppb_var_dictionary.h" | 93 #include "ppapi/c/ppb_var_dictionary.h" |
| 94 #include "ppapi/c/ppb_video_decoder.h" |
| 94 #include "ppapi/c/ppb_video_frame.h" | 95 #include "ppapi/c/ppb_video_frame.h" |
| 95 #include "ppapi/c/ppb_view.h" | 96 #include "ppapi/c/ppb_view.h" |
| 96 #include "ppapi/c/ppp.h" | 97 #include "ppapi/c/ppp.h" |
| 97 #include "ppapi/c/ppp_instance.h" | 98 #include "ppapi/c/ppp_instance.h" |
| 98 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" | 99 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" |
| 99 #include "ppapi/c/private/ppb_file_io_private.h" | 100 #include "ppapi/c/private/ppb_file_io_private.h" |
| 100 #include "ppapi/c/private/ppb_file_ref_private.h" | 101 #include "ppapi/c/private/ppb_file_ref_private.h" |
| 101 #include "ppapi/c/private/ppb_find_private.h" | 102 #include "ppapi/c/private/ppb_find_private.h" |
| 102 #include "ppapi/c/private/ppb_flash.h" | 103 #include "ppapi/c/private/ppb_flash.h" |
| 103 #include "ppapi/c/private/ppb_flash_clipboard.h" | 104 #include "ppapi/c/private/ppb_flash_clipboard.h" |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 channel_handle, | 710 channel_handle, |
| 710 peer_pid, | 711 peer_pid, |
| 711 plugin_child_id, | 712 plugin_child_id, |
| 712 false)) // is_external = false | 713 false)) // is_external = false |
| 713 return scoped_refptr<PluginModule>(); | 714 return scoped_refptr<PluginModule>(); |
| 714 | 715 |
| 715 return module; | 716 return module; |
| 716 } | 717 } |
| 717 | 718 |
| 718 } // namespace content | 719 } // namespace content |
| OLD | NEW |