Index: third_party/WebKit/Source/core/paint/ClipScope.cpp |
diff --git a/third_party/WebKit/Source/core/paint/ClipScope.cpp b/third_party/WebKit/Source/core/paint/ClipScope.cpp |
index 7951cadb1730cc943fda120bff1ce3d6e7d182de..810f574b5c941de9f06f5e491578cc8edb43f8f8 100644 |
--- a/third_party/WebKit/Source/core/paint/ClipScope.cpp |
+++ b/third_party/WebKit/Source/core/paint/ClipScope.cpp |
@@ -13,14 +13,14 @@ namespace blink { |
ClipScope::~ClipScope() |
{ |
for (int i = 0; i < m_clipCount; i++) { |
- m_context->restore(); |
+ m_context.restore(); |
} |
} |
void ClipScope::clip(const LayoutRect& clipRect, SkRegion::Op operation) |
{ |
- m_context->save(); |
- m_context->clipRect(pixelSnappedIntRect(clipRect), NotAntiAliased, operation); |
+ m_context.save(); |
+ m_context.clipRect(pixelSnappedIntRect(clipRect), NotAntiAliased, operation); |
m_clipCount++; |
} |