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

Side by Side Diff: mojo/examples/pepper_container_app/resource_creation_impl.cc

Issue 270213004: Implement Pepper PPB_VideoDecoder interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disable some unit tests on Win 64 bit builds. Created 6 years, 6 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/api/pp_errors.idl » ('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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 NOTIMPLEMENTED(); 283 NOTIMPLEMENTED();
284 return 0; 284 return 0;
285 } 285 }
286 286
287 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate( 287 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(
288 PP_Instance instance) { 288 PP_Instance instance) {
289 NOTIMPLEMENTED(); 289 NOTIMPLEMENTED();
290 return 0; 290 return 0;
291 } 291 }
292 292
293 PP_Resource ResourceCreationImpl::CreateVideoDecoder(PP_Instance instance) {
294 NOTIMPLEMENTED();
295 return 0;
296 }
297
293 PP_Resource ResourceCreationImpl::CreateVideoDestination( 298 PP_Resource ResourceCreationImpl::CreateVideoDestination(
294 PP_Instance instance) { 299 PP_Instance instance) {
295 NOTIMPLEMENTED(); 300 NOTIMPLEMENTED();
296 return 0; 301 return 0;
297 } 302 }
298 303
299 PP_Resource ResourceCreationImpl::CreateVideoSource( 304 PP_Resource ResourceCreationImpl::CreateVideoSource(
300 PP_Instance instance) { 305 PP_Instance instance) {
301 NOTIMPLEMENTED(); 306 NOTIMPLEMENTED();
302 return 0; 307 return 0;
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 PP_Instance instance, 395 PP_Instance instance,
391 PP_Resource context3d_id, 396 PP_Resource context3d_id,
392 PP_VideoDecoder_Profile profile) { 397 PP_VideoDecoder_Profile profile) {
393 NOTIMPLEMENTED(); 398 NOTIMPLEMENTED();
394 return 0; 399 return 0;
395 } 400 }
396 #endif // !defined(OS_NACL) 401 #endif // !defined(OS_NACL)
397 402
398 } // namespace examples 403 } // namespace examples
399 } // namespace mojo 404 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/examples/pepper_container_app/resource_creation_impl.h ('k') | ppapi/api/pp_errors.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698