diff options
Diffstat (limited to 'webkit/plugins/ppapi/ppb_graphics_3d_impl.cc')
-rw-r--r-- | webkit/plugins/ppapi/ppb_graphics_3d_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/webkit/plugins/ppapi/ppb_graphics_3d_impl.cc b/webkit/plugins/ppapi/ppb_graphics_3d_impl.cc index aadb023..cdd7d6c7 100644 --- a/webkit/plugins/ppapi/ppb_graphics_3d_impl.cc +++ b/webkit/plugins/ppapi/ppb_graphics_3d_impl.cc @@ -245,10 +245,10 @@ void PPB_Graphics3D_Impl::SendContextLost() { if (!instance || !instance->container()) return; - const PPP_Graphics3D_Dev* ppp_graphics_3d = - static_cast<const PPP_Graphics3D_Dev*>( + const PPP_Graphics3D* ppp_graphics_3d = + static_cast<const PPP_Graphics3D*>( instance->module()->GetPluginInterface( - PPP_GRAPHICS_3D_DEV_INTERFACE)); + PPP_GRAPHICS_3D_INTERFACE)); if (ppp_graphics_3d) ppp_graphics_3d->Graphics3DContextLost(pp_instance()); } |