| Index: webkit/plugins/ppapi/ppb_video_layer_impl.cc
|
| diff --git a/webkit/plugins/ppapi/ppb_video_layer_impl.cc b/webkit/plugins/ppapi/ppb_video_layer_impl.cc
|
| index e7cad6fe2d7b5d8284f593ac045ead8864eea515..aa90f13d8006fc9db438e6fec55696889a7bf8df 100644
|
| --- a/webkit/plugins/ppapi/ppb_video_layer_impl.cc
|
| +++ b/webkit/plugins/ppapi/ppb_video_layer_impl.cc
|
| @@ -13,7 +13,7 @@ using ppapi::thunk::PPB_VideoLayer_API;
|
| namespace webkit {
|
| namespace ppapi {
|
|
|
| -PPB_VideoLayer_Impl::PPB_VideoLayer_Impl(PluginInstance* instance)
|
| +PPB_VideoLayer_Impl::PPB_VideoLayer_Impl(PP_Instance instance)
|
| : Resource(instance) {
|
| }
|
|
|
| @@ -21,7 +21,7 @@ PPB_VideoLayer_Impl::~PPB_VideoLayer_Impl() {
|
| }
|
|
|
| // static
|
| -PP_Resource PPB_VideoLayer_Impl::Create(PluginInstance* instance,
|
| +PP_Resource PPB_VideoLayer_Impl::Create(PP_Instance instance,
|
| PP_VideoLayerMode_Dev mode) {
|
| if (mode != PP_VIDEOLAYERMODE_SOFTWARE)
|
| return 0;
|
|
|