| 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( |
| 294 PP_Instance instance) { |
| 295 NOTIMPLEMENTED(); |
| 296 return 0; |
| 297 } |
| 298 |
| 293 PP_Resource ResourceCreationImpl::CreateVideoDestination( | 299 PP_Resource ResourceCreationImpl::CreateVideoDestination( |
| 294 PP_Instance instance) { | 300 PP_Instance instance) { |
| 295 NOTIMPLEMENTED(); | 301 NOTIMPLEMENTED(); |
| 296 return 0; | 302 return 0; |
| 297 } | 303 } |
| 298 | 304 |
| 299 PP_Resource ResourceCreationImpl::CreateVideoSource( | 305 PP_Resource ResourceCreationImpl::CreateVideoSource( |
| 300 PP_Instance instance) { | 306 PP_Instance instance) { |
| 301 NOTIMPLEMENTED(); | 307 NOTIMPLEMENTED(); |
| 302 return 0; | 308 return 0; |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 PP_Instance instance, | 396 PP_Instance instance, |
| 391 PP_Resource context3d_id, | 397 PP_Resource context3d_id, |
| 392 PP_VideoDecoder_Profile profile) { | 398 PP_VideoDecoder_Profile profile) { |
| 393 NOTIMPLEMENTED(); | 399 NOTIMPLEMENTED(); |
| 394 return 0; | 400 return 0; |
| 395 } | 401 } |
| 396 #endif // !defined(OS_NACL) | 402 #endif // !defined(OS_NACL) |
| 397 | 403 |
| 398 } // namespace examples | 404 } // namespace examples |
| 399 } // namespace mojo | 405 } // namespace mojo |
| OLD | NEW |