Index: webkit/plugins/ppapi/ppb_surface_3d_impl.h |
diff --git a/webkit/plugins/ppapi/ppb_surface_3d_impl.h b/webkit/plugins/ppapi/ppb_surface_3d_impl.h |
index e3d417304ef8750e39fbc82d131a3119368e5b24..1576673e0caae985749653365f877d34fcc7dfc0 100644 |
--- a/webkit/plugins/ppapi/ppb_surface_3d_impl.h |
+++ b/webkit/plugins/ppapi/ppb_surface_3d_impl.h |
@@ -30,7 +30,7 @@ class PPB_Surface3D_Impl : public Resource { |
bool Init(PP_Config3D_Dev config, |
const int32_t* attrib_list); |
- PluginDelegate::PlatformContext3D* context() const { |
+ PPB_Context3D_Impl* context() const { |
return context_; |
} |
@@ -42,7 +42,7 @@ class PPB_Surface3D_Impl : public Resource { |
// Binds the context such that all draw calls to context |
// affect this surface. To unbind call this function will NULL context. |
// Returns true if successful. |
- bool BindToContext(PluginDelegate::PlatformContext3D* context); |
+ bool BindToContext(PPB_Context3D_Impl* context); |
unsigned int GetBackingTextureId(); |
@@ -62,7 +62,7 @@ class PPB_Surface3D_Impl : public Resource { |
PP_CompletionCallback swap_callback_; |
// The context this surface is currently bound to. |
- PluginDelegate::PlatformContext3D* context_; |
+ PPB_Context3D_Impl* context_; |
DISALLOW_COPY_AND_ASSIGN(PPB_Surface3D_Impl); |
}; |