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

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

Issue 6047008: Added ppapi::Surface3D. This CL completes the new Pepper3D interface. The imp... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years 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
Index: webkit/plugins/ppapi/ppapi_plugin_instance.h
===================================================================
--- webkit/plugins/ppapi/ppapi_plugin_instance.h (revision 70037)
+++ webkit/plugins/ppapi/ppapi_plugin_instance.h (working copy)
@@ -53,8 +53,8 @@
class PluginDelegate;
class PluginModule;
class PPB_Graphics2D_Impl;
-class PPB_Context3D_Impl;
class PPB_ImageData_Impl;
+class PPB_Surface3D_Impl;
class PPB_URLLoader_Impl;
class Resource;
@@ -225,9 +225,9 @@
// null if the context is not 2D.
PPB_Graphics2D_Impl* bound_graphics_2d() const;
- // Get the bound graphics context as a concrete 3D graphics context or returns
- // null if the context is not 3D.
- PPB_Context3D_Impl* bound_graphics_3d() const;
+ // Get the bound 3D graphics surface.
+ // Returns NULL if bound graphics is not a 3D surface.
+ PPB_Surface3D_Impl* bound_graphics_3d() const;
PluginDelegate* delegate_;
scoped_refptr<PluginModule> module_;

Powered by Google App Engine
This is Rietveld 408576698