| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/renderer/pepper/resource_creation_impl.h" | 5 #include "content/renderer/pepper/resource_creation_impl.h" |
| 6 | 6 |
| 7 #include "content/renderer/pepper/common.h" | 7 #include "content/renderer/pepper/common.h" |
| 8 #include "content/renderer/pepper/ppb_audio_impl.h" | 8 #include "content/renderer/pepper/ppb_audio_impl.h" |
| 9 #include "content/renderer/pepper/ppb_broker_impl.h" | 9 #include "content/renderer/pepper/ppb_broker_impl.h" |
| 10 #include "content/renderer/pepper/ppb_buffer_impl.h" | 10 #include "content/renderer/pepper/ppb_buffer_impl.h" |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 } | 286 } |
| 287 | 287 |
| 288 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) { | 288 PP_Resource ResourceCreationImpl::CreateUDPSocketPrivate(PP_Instance instance) { |
| 289 return 0; // Not supported in-process. | 289 return 0; // Not supported in-process. |
| 290 } | 290 } |
| 291 | 291 |
| 292 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) { | 292 PP_Resource ResourceCreationImpl::CreateVideoCapture(PP_Instance instance) { |
| 293 return 0; // VideoCapture is not supported in process now. | 293 return 0; // VideoCapture is not supported in process now. |
| 294 } | 294 } |
| 295 | 295 |
| 296 PP_Resource ResourceCreationImpl::CreateVideoDecoder( | 296 PP_Resource ResourceCreationImpl::CreateVideoDecoderDev( |
| 297 PP_Instance instance, | 297 PP_Instance instance, |
| 298 PP_Resource graphics3d_id, | 298 PP_Resource graphics3d_id, |
| 299 PP_VideoDecoder_Profile profile) { | 299 PP_VideoDecoder_Profile profile) { |
| 300 return PPB_VideoDecoder_Impl::Create(instance, graphics3d_id, profile); | 300 return PPB_VideoDecoder_Impl::Create(instance, graphics3d_id, profile); |
| 301 } | 301 } |
| 302 | 302 |
| 303 PP_Resource ResourceCreationImpl::CreateVideoDestination(PP_Instance instance) { | 303 PP_Resource ResourceCreationImpl::CreateVideoDestination(PP_Instance instance) { |
| 304 return 0; // Not supported in-process. | 304 return 0; // Not supported in-process. |
| 305 } | 305 } |
| 306 | 306 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 323 wheel_ticks, | 323 wheel_ticks, |
| 324 scroll_by_page); | 324 scroll_by_page); |
| 325 } | 325 } |
| 326 | 326 |
| 327 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( | 327 PP_Resource ResourceCreationImpl::CreateX509CertificatePrivate( |
| 328 PP_Instance instance) { | 328 PP_Instance instance) { |
| 329 return 0; // Not supported in-process. | 329 return 0; // Not supported in-process. |
| 330 } | 330 } |
| 331 | 331 |
| 332 } // namespace content | 332 } // namespace content |
| OLD | NEW |