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

Unified Diff: ppapi/cpp/instance.h

Issue 7737013: Move PPAPI graphics3d and opengles interfaces out of Dev. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 | « ppapi/cpp/graphics_3d_client.cc ('k') | ppapi/cpp/instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/instance.h
===================================================================
--- ppapi/cpp/instance.h (revision 99848)
+++ ppapi/cpp/instance.h (working copy)
@@ -21,7 +21,7 @@
namespace pp {
class Graphics2D;
-class Graphics3D_Dev;
+class Graphics3D;
class InputEvent;
class ImageData;
class Point;
@@ -275,12 +275,12 @@
/// Refer to <code>BindGraphics(const Graphics2D& graphics)</code> for
/// further information.
///
- /// @param[in] graphics A <code>Graphics3D_Dev</code> to bind.
+ /// @param[in] graphics A <code>Graphics3D</code> to bind.
///
/// @return true if bind was successful or false if the device was not the
/// correct type. On success, a reference to the device will be held by the
/// instance, so the caller can release its reference if it chooses.
- bool BindGraphics(const Graphics3D_Dev& graphics);
+ bool BindGraphics(const Graphics3D& graphics);
/// Binds the given Surface3D as the current display surface.
/// Refer to <code>BindGraphics(const Graphics2D& graphics)</code> for
« no previous file with comments | « ppapi/cpp/graphics_3d_client.cc ('k') | ppapi/cpp/instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698