| 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 #include <set> | 10 #include <set> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 #include "ppapi/c/ppb_url_request_info.h" | 89 #include "ppapi/c/ppb_url_request_info.h" |
| 90 #include "ppapi/c/ppb_url_response_info.h" | 90 #include "ppapi/c/ppb_url_response_info.h" |
| 91 #include "ppapi/c/ppb_var.h" | 91 #include "ppapi/c/ppb_var.h" |
| 92 #include "ppapi/c/ppb_var_array.h" | 92 #include "ppapi/c/ppb_var_array.h" |
| 93 #include "ppapi/c/ppb_var_array_buffer.h" | 93 #include "ppapi/c/ppb_var_array_buffer.h" |
| 94 #include "ppapi/c/ppb_var_dictionary.h" | 94 #include "ppapi/c/ppb_var_dictionary.h" |
| 95 #include "ppapi/c/ppb_video_decoder.h" | 95 #include "ppapi/c/ppb_video_decoder.h" |
| 96 #include "ppapi/c/ppb_video_encoder.h" | 96 #include "ppapi/c/ppb_video_encoder.h" |
| 97 #include "ppapi/c/ppb_video_frame.h" | 97 #include "ppapi/c/ppb_video_frame.h" |
| 98 #include "ppapi/c/ppb_view.h" | 98 #include "ppapi/c/ppb_view.h" |
| 99 #include "ppapi/c/ppb_vpn_provider.h" |
| 99 #include "ppapi/c/ppp.h" | 100 #include "ppapi/c/ppp.h" |
| 100 #include "ppapi/c/ppp_instance.h" | 101 #include "ppapi/c/ppp_instance.h" |
| 101 #include "ppapi/c/private/ppb_camera_capabilities_private.h" | 102 #include "ppapi/c/private/ppb_camera_capabilities_private.h" |
| 102 #include "ppapi/c/private/ppb_camera_device_private.h" | 103 #include "ppapi/c/private/ppb_camera_device_private.h" |
| 103 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" | 104 #include "ppapi/c/private/ppb_ext_crx_file_system_private.h" |
| 104 #include "ppapi/c/private/ppb_file_io_private.h" | 105 #include "ppapi/c/private/ppb_file_io_private.h" |
| 105 #include "ppapi/c/private/ppb_file_ref_private.h" | 106 #include "ppapi/c/private/ppb_file_ref_private.h" |
| 106 #include "ppapi/c/private/ppb_find_private.h" | 107 #include "ppapi/c/private/ppb_find_private.h" |
| 107 #include "ppapi/c/private/ppb_flash.h" | 108 #include "ppapi/c/private/ppb_flash.h" |
| 108 #include "ppapi/c/private/ppb_flash_clipboard.h" | 109 #include "ppapi/c/private/ppb_flash_clipboard.h" |
| (...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 channel_handle, | 818 channel_handle, |
| 818 peer_pid, | 819 peer_pid, |
| 819 plugin_child_id, | 820 plugin_child_id, |
| 820 false)) // is_external = false | 821 false)) // is_external = false |
| 821 return scoped_refptr<PluginModule>(); | 822 return scoped_refptr<PluginModule>(); |
| 822 | 823 |
| 823 return module; | 824 return module; |
| 824 } | 825 } |
| 825 | 826 |
| 826 } // namespace content | 827 } // namespace content |
| OLD | NEW |