| 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |