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

Side by Side Diff: mojo/examples/pepper_container_app/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
« no previous file with comments | « mojo/examples/pepper_container_app/resource_creation_impl.h ('k') | ppapi/ppapi_shared.gypi » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "mojo/examples/pepper_container_app/resource_creation_impl.h" 5 #include "mojo/examples/pepper_container_app/resource_creation_impl.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h" 8 #include "mojo/examples/pepper_container_app/graphics_3d_resource.h"
9 9
10 namespace mojo { 10 namespace mojo {
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance instance) { 373 PP_Resource ResourceCreationImpl::CreateTalk(PP_Instance instance) {
374 NOTIMPLEMENTED(); 374 NOTIMPLEMENTED();
375 return 0; 375 return 0;
376 } 376 }
377 377
378 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) { 378 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) {
379 NOTIMPLEMENTED(); 379 NOTIMPLEMENTED();
380 return 0; 380 return 0;
381 } 381 }
382 382
383 PP_Resource ResourceCreationImpl::CreateVideoDecoder( 383 PP_Resource ResourceCreationImpl::CreateVideoDecoderDev(
384 PP_Instance instance, 384 PP_Instance instance,
385 PP_Resource context3d_id, 385 PP_Resource context3d_id,
386 PP_VideoDecoder_Profile profile) { 386 PP_VideoDecoder_Profile profile) {
387 NOTIMPLEMENTED(); 387 NOTIMPLEMENTED();
388 return 0; 388 return 0;
389 } 389 }
390 #endif // !defined(OS_NACL) 390 #endif // !defined(OS_NACL)
391 391
392 } // namespace examples 392 } // namespace examples
393 } // namespace mojo 393 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/examples/pepper_container_app/resource_creation_impl.h ('k') | ppapi/ppapi_shared.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698