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

Unified Diff: Source/core/platform/graphics/Extensions3D.h

Issue 15301006: Merged GraphicsContext3DPrivate into GraphicsContext3D (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed ExtractWebGraphicsContext3D Created 7 years, 7 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
Index: Source/core/platform/graphics/Extensions3D.h
diff --git a/Source/core/platform/graphics/Extensions3D.h b/Source/core/platform/graphics/Extensions3D.h
index ad534712de67fa6c8f34ca4ba85ff580ccdb07e5..954d955ecf716a0005117d134d30035b40c1648e 100644
--- a/Source/core/platform/graphics/Extensions3D.h
+++ b/Source/core/platform/graphics/Extensions3D.h
@@ -32,7 +32,7 @@
namespace WebCore {
-class GraphicsContext3DPrivate;
+class GraphicsContext3D;
class ImageBuffer;
// The supported extensions are defined below.
@@ -329,11 +329,11 @@ public:
private:
// Instances of this class are strictly owned by the GraphicsContext3D implementation and do not
// need to be instantiated by any other code.
- friend class GraphicsContext3DPrivate;
- explicit Extensions3D(GraphicsContext3DPrivate*);
+ friend class GraphicsContext3D;
+ explicit Extensions3D(GraphicsContext3D*);
- // Weak pointer back to GraphicsContext3DPrivate
- GraphicsContext3DPrivate* m_private;
+ // Weak pointer back to GraphicsContext3D.
+ GraphicsContext3D* m_context;
};
} // namespace WebCore
« no previous file with comments | « Source/core/platform/chromium/support/GraphicsContext3DPrivate.cpp ('k') | Source/core/platform/graphics/Extensions3D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698