| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |