Chromium Code Reviews| 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..7b90d75718cee3503ed2a5dcb4cab017227d8158 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 |
|
jamesr
2013/05/17 19:26:03
please update comment
try running 'git grep Graph
|
| - GraphicsContext3DPrivate* m_private; |
| + GraphicsContext3D* m_context; |
| }; |
| } // namespace WebCore |