Index: Source/core/platform/graphics/GraphicsContext.h |
diff --git a/Source/core/platform/graphics/GraphicsContext.h b/Source/core/platform/graphics/GraphicsContext.h |
index 892fdcf045196673a02e6be1fdaa9c8794168072..2507d953657668080ddbca458d78708636a5b2b7 100644 |
--- a/Source/core/platform/graphics/GraphicsContext.h |
+++ b/Source/core/platform/graphics/GraphicsContext.h |
@@ -50,7 +50,6 @@ |
namespace WebCore { |
class PlatformContextSkia; |
-typedef PlatformContextSkia GraphicsContextPlatformPrivate; |
} |
typedef WebCore::PlatformContextSkia PlatformGraphicsContext; |
@@ -155,7 +154,7 @@ namespace WebCore { |
class GraphicsContext { |
WTF_MAKE_NONCOPYABLE(GraphicsContext); WTF_MAKE_FAST_ALLOCATED; |
public: |
- GraphicsContext(PlatformGraphicsContext*); |
+ GraphicsContext(SkCanvas*); |
jamesr
2013/04/29 23:56:17
nit: not your fault, but this c'tor should be expl
|
~GraphicsContext(); |
PlatformGraphicsContext* platformContext() const; |
@@ -388,7 +387,7 @@ namespace WebCore { |
return value; |
} |
- GraphicsContextPlatformPrivate* m_data; |
+ PlatformContextSkia* m_data; |
GraphicsContextState m_state; |
Vector<GraphicsContextState> m_stack; |