| Index: webkit/plugins/ppapi/resource_creation_impl.cc
|
| diff --git a/webkit/plugins/ppapi/resource_creation_impl.cc b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| index 61b3d72edc64791ef8b15e295602c06e1ecd9cc8..e68d167a4bb99fe2019ea95871e3c07cf07c3937 100644
|
| --- a/webkit/plugins/ppapi/resource_creation_impl.cc
|
| +++ b/webkit/plugins/ppapi/resource_creation_impl.cc
|
| @@ -283,8 +283,11 @@ PP_Resource ResourceCreationImpl::CreateURLRequestInfo(PP_Instance instance) {
|
| return ReturnResource(new PPB_URLRequestInfo_Impl(instance_));
|
| }
|
|
|
| -PP_Resource ResourceCreationImpl::CreateVideoDecoder(PP_Instance instance) {
|
| - return ReturnResource(new PPB_VideoDecoder_Impl(instance_));
|
| +PP_Resource ResourceCreationImpl::CreateVideoDecoder(
|
| + PP_Instance instance,
|
| + PP_Resource context3d_id,
|
| + const PP_VideoConfigElement* config) {
|
| + return PPB_VideoDecoder_Impl::Create(instance_, context3d_id, config);
|
| }
|
|
|
| PP_Resource ResourceCreationImpl::CreateVideoLayer(PP_Instance instance,
|
|
|