| Index: third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/Pattern.cpp b/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| index ae725b42a0970a71b42c835436b3c9bd12bd9e30..ce773d59b50118c1770aa8b67cf971dfbafa1aa7 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/Pattern.cpp
|
| @@ -65,7 +65,7 @@
|
| m_pattern = createShader();
|
| }
|
|
|
| - paint.setShader(m_pattern);
|
| + paint.setShader(m_pattern.get());
|
| }
|
|
|
| void Pattern::setPatternSpaceTransform(const AffineTransform& patternSpaceTransformation)
|
| @@ -74,7 +74,7 @@
|
| return;
|
|
|
| m_patternSpaceTransformation = patternSpaceTransformation;
|
| - m_pattern.reset();
|
| + m_pattern.clear();
|
| }
|
|
|
| void Pattern::adjustExternalMemoryAllocated(int64_t delta)
|
|
|