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

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::CreateScrollbar(PP_Instance instance, 236 PP_Resource ResourceCreationImpl::CreateScrollbar(PP_Instance instance,
238 PP_Bool vertical) { 237 PP_Bool vertical) {
239 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical)); 238 return PPB_Scrollbar_Impl::Create(instance, PP_ToBool(vertical));
240 } 239 }
241 240
242 PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance /* instance */) { 241 PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance /* instance */) {
243 return 0; // Not supported in-process. 242 return 0; // Not supported in-process.
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers, 304 ppapi::OBJECT_IS_IMPL, instance, time_stamp, modifiers,
306 wheel_delta, wheel_ticks, scroll_by_page); 305 wheel_delta, wheel_ticks, scroll_by_page);
307 } 306 }
308 307
309 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 308 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
310 PP_Instance instance) { 309 PP_Instance instance) {
311 return 0; // Not supported in-process. 310 return 0; // Not supported in-process.
312 } 311 }
313 312
314 } // namespace content 313 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698