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

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

Issue 23450012: Make NetworkList and NetworkMonitor APIs public (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | Annotate | Revision Log
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/resource_creation_impl.h" 5 #include "content/renderer/pepper/resource_creation_impl.h"
6 6
7 #include "content/renderer/pepper/common.h" 7 #include "content/renderer/pepper/common.h"
8 #include "content/renderer/pepper/ppb_audio_impl.h" 8 #include "content/renderer/pepper/ppb_audio_impl.h"
9 #include "content/renderer/pepper/ppb_broker_impl.h" 9 #include "content/renderer/pepper/ppb_broker_impl.h"
10 #include "content/renderer/pepper/ppb_buffer_impl.h" 10 #include "content/renderer/pepper/ppb_buffer_impl.h"
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 222
223 PP_Resource ResourceCreationImpl::CreateTouchInputEvent( 223 PP_Resource ResourceCreationImpl::CreateTouchInputEvent(
224 PP_Instance instance, 224 PP_Instance instance,
225 PP_InputEvent_Type type, 225 PP_InputEvent_Type type,
226 PP_TimeTicks time_stamp, 226 PP_TimeTicks time_stamp,
227 uint32_t modifiers) { 227 uint32_t modifiers) {
228 return PPB_InputEvent_Shared::CreateTouchInputEvent( 228 return PPB_InputEvent_Shared::CreateTouchInputEvent(
229 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers); 229 ppapi::OBJECT_IS_IMPL, instance, type, time_stamp, modifiers);
230 } 230 }
231 231
232 PP_Resource ResourceCreationImpl::CreateNetworkMonitorPrivate( 232 PP_Resource ResourceCreationImpl::CreateNetworkMonitor(PP_Instance instance) {
233 PP_Instance instance) {
234 return 0; // Not supported in-process. 233 return 0; // Not supported in-process.
235 } 234 }
236 235
237 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate( 236 PP_Resource ResourceCreationImpl::CreatePlatformVerificationPrivate(
238 PP_Instance instance) { 237 PP_Instance instance) {
239 return 0; // Not supported in-process. 238 return 0; // Not supported in-process.
240 } 239 }
241 240
242 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance, 241 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance,
243 PP_Bool vertical) { 242 PP_Bool vertical) {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, 309 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers,
311 wheel_delta, wheel_ticks, scroll_by_page); 310 wheel_delta, wheel_ticks, scroll_by_page);
312 } 311 }
313 312
314 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 313 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
315 PP_Instance instance) { 314 PP_Instance instance) {
316 return 0; // Not supported in-process. 315 return 0; // Not supported in-process.
317 } 316 }
318 317
319 } // namespace content 318 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | native_client_sdk/src/libraries/ppapi/library.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698