Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: webkit/plugins/ppapi/ppb_surface_3d_impl.h

Issue 6293023: PPAPI: move GLES2Implementation to PPAPI glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/plugins/ppapi/ppb_context_3d_impl.cc ('k') | webkit/plugins/ppapi/ppb_surface_3d_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
};
« no previous file with comments | « webkit/plugins/ppapi/ppb_context_3d_impl.cc ('k') | webkit/plugins/ppapi/ppb_surface_3d_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698