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

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

Issue 263893005: Rename some PPB_VideoDecoder_Dev implementation types. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename resource creation API method CreateVideoDecoder (add Dev). Created 6 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 | 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 } 286 }
287 287
288 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) { 288 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) {
289 return 0; // Not supported in-process. 289 return 0; // Not supported in-process.
290 } 290 }
291 291
292 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) { 292 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) {
293 return 0; // VideoCapture is not supported in process now. 293 return 0; // VideoCapture is not supported in process now.
294 } 294 }
295 295
296 PP_Resource ResourceCreationImpl::CreateVideoDecoder( 296 PP_Resource ResourceCreationImpl::CreateVideoDecoderDev(
297 PP_Instance instance, 297 PP_Instance instance,
298 PP_Resource graphics3d_id, 298 PP_Resource graphics3d_id,
299 PP_VideoDecoder_Profile profile) { 299 PP_VideoDecoder_Profile profile) {
300 return PPB_VideoDecoder_Impl::Create(instance, graphics3d_id, profile); 300 return PPB_VideoDecoder_Impl::Create(instance, graphics3d_id, profile);
301 } 301 }
302 302
303 PP_Resource ResourceCreationImpl::CreateVideoDestination(PP_Instance instance) { 303 PP_Resource ResourceCreationImpl::CreateVideoDestination(PP_Instance instance) {
304 return 0; // Not supported in-process. 304 return 0; // Not supported in-process.
305 } 305 }
306 306
(...skipping 16 matching lines...) Expand all
323 wheel_ticks, 323 wheel_ticks,
324 scroll_by_page); 324 scroll_by_page);
325 } 325 }
326 326
327 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( 327 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate(
328 PP_Instance instance) { 328 PP_Instance instance) {
329 return 0; // Not supported in-process. 329 return 0; // Not supported in-process.
330 } 330 }
331 331
332 } // namespace content 332 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/pepper/resource_creation_impl.h ('k') | mojo/examples/pepper_container_app/resource_creation_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698