diff options
-rw-r--r-- | ppapi/proxy/ppb_surface_3d_proxy.cc | 2 | ||||
-rw-r--r-- | webkit/plugins/ppapi/ppb_surface_3d_impl.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/proxy/ppb_surface_3d_proxy.cc b/ppapi/proxy/ppb_surface_3d_proxy.cc index b515a22..053fc01 100644 --- a/ppapi/proxy/ppb_surface_3d_proxy.cc +++ b/ppapi/proxy/ppb_surface_3d_proxy.cc @@ -44,7 +44,7 @@ Surface3D::Surface3D(const HostResource& host_resource) Surface3D::~Surface3D() { if (context_) - context_->BindSurfaces(NULL, NULL); + context_->BindSurfaces(0, 0); } PPB_Surface3D_API* Surface3D::AsPPB_Surface3D_API() { diff --git a/webkit/plugins/ppapi/ppb_surface_3d_impl.cc b/webkit/plugins/ppapi/ppb_surface_3d_impl.cc index ad8e9b1..d4b7fe4 100644 --- a/webkit/plugins/ppapi/ppb_surface_3d_impl.cc +++ b/webkit/plugins/ppapi/ppb_surface_3d_impl.cc @@ -29,7 +29,7 @@ PPB_Surface3D_Impl::PPB_Surface3D_Impl(PluginInstance* instance) PPB_Surface3D_Impl::~PPB_Surface3D_Impl() { if (context_) - context_->BindSurfaces(NULL, NULL); + context_->BindSurfaces(0, 0); } // static |