| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ppapi/cpp/dev/video_decoder_dev.h" | 5 #include "ppapi/cpp/dev/video_decoder_dev.h" |
| 6 | 6 |
| 7 #include "ppapi/c/dev/ppb_video_decoder_dev.h" | 7 #include "ppapi/c/dev/ppb_video_decoder_dev.h" |
| 8 #include "ppapi/c/dev/ppp_video_decoder_dev.h" | 8 #include "ppapi/c/dev/ppp_video_decoder_dev.h" |
| 9 #include "ppapi/c/pp_errors.h" | 9 #include "ppapi/c/pp_errors.h" |
| 10 #include "ppapi/cpp/dev/context_3d_dev.h" | 10 #include "ppapi/cpp/dev/context_3d_dev.h" |
| 11 #include "ppapi/cpp/graphics_3d.h" | 11 #include "ppapi/cpp/dev/graphics_3d_dev.h" |
| 12 #include "ppapi/cpp/instance.h" | 12 #include "ppapi/cpp/instance.h" |
| 13 #include "ppapi/cpp/module.h" | 13 #include "ppapi/cpp/module.h" |
| 14 #include "ppapi/cpp/module_impl.h" | 14 #include "ppapi/cpp/module_impl.h" |
| 15 | 15 |
| 16 namespace pp { | 16 namespace pp { |
| 17 | 17 |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 template <> const char* interface_name<PPB_VideoDecoder_Dev>() { | 20 template <> const char* interface_name<PPB_VideoDecoder_Dev>() { |
| 21 return PPB_VIDEODECODER_DEV_INTERFACE; | 21 return PPB_VIDEODECODER_DEV_INTERFACE; |
| 22 } | 22 } |
| 23 | 23 |
| 24 } // namespace | 24 } // namespace |
| 25 | 25 |
| 26 VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance, | 26 VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance, |
| 27 const Context3D_Dev& context, | 27 const Context3D_Dev& context, |
| 28 PP_VideoDecoder_Profile profile) { | 28 PP_VideoDecoder_Profile profile) { |
| 29 if (!has_interface<PPB_VideoDecoder_Dev>()) | 29 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 30 return; | 30 return; |
| 31 PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create( | 31 PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create( |
| 32 instance->pp_instance(), context.pp_resource(), profile)); | 32 instance->pp_instance(), context.pp_resource(), profile)); |
| 33 } | 33 } |
| 34 | 34 |
| 35 VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance, | 35 VideoDecoder_Dev::VideoDecoder_Dev(const Instance* instance, |
| 36 const Graphics3D& context, | 36 const Graphics3D_Dev& context, |
| 37 PP_VideoDecoder_Profile profile) { | 37 PP_VideoDecoder_Profile profile) { |
| 38 if (!has_interface<PPB_VideoDecoder_Dev>()) | 38 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 39 return; | 39 return; |
| 40 PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create( | 40 PassRefFromConstructor(get_interface<PPB_VideoDecoder_Dev>()->Create( |
| 41 instance->pp_instance(), context.pp_resource(), profile)); | 41 instance->pp_instance(), context.pp_resource(), profile)); |
| 42 } | 42 } |
| 43 | 43 |
| 44 VideoDecoder_Dev::VideoDecoder_Dev(PP_Resource resource) : Resource(resource) { | 44 VideoDecoder_Dev::VideoDecoder_Dev(PP_Resource resource) : Resource(resource) { |
| 45 } | 45 } |
| 46 | 46 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 } | 80 } |
| 81 | 81 |
| 82 int32_t VideoDecoder_Dev::Reset(CompletionCallback callback) { | 82 int32_t VideoDecoder_Dev::Reset(CompletionCallback callback) { |
| 83 if (!has_interface<PPB_VideoDecoder_Dev>()) | 83 if (!has_interface<PPB_VideoDecoder_Dev>()) |
| 84 return callback.MayForce(PP_ERROR_NOINTERFACE); | 84 return callback.MayForce(PP_ERROR_NOINTERFACE); |
| 85 return get_interface<PPB_VideoDecoder_Dev>()->Reset( | 85 return get_interface<PPB_VideoDecoder_Dev>()->Reset( |
| 86 pp_resource(), callback.pp_completion_callback()); | 86 pp_resource(), callback.pp_completion_callback()); |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace pp | 89 } // namespace pp |
| OLD | NEW |