Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(362)

Side by Side Diff: content/renderer/pepper/plugin_module.cc

Issue 1726303003: ppapi: PPB_VpnProvider: Define API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove GetUnbindEvent Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/ppapi_utils.cc ('k') | content/renderer/pepper/resource_creation_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « chrome/common/ppapi_utils.cc ('k') | content/renderer/pepper/resource_creation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698