| Index: third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp b/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
|
| index bc583e89f5c7b0de333f2e03a04cf1c066da5ff3..583ee2c0d36219335e2e9b4cb9f2167b311ff88a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
|
| @@ -315,7 +315,7 @@ void HTMLCanvasElement::didDraw(const FloatRect& rect) {
|
| if (layoutObject())
|
| layoutObject()->setMayNeedPaintInvalidation();
|
| if (m_context && m_context->is2d() && m_context->shouldAntialias() &&
|
| - page() && page()->deviceScaleFactor() > 1.0f) {
|
| + page() && page()->deviceScaleFactorDeprecated() > 1.0f) {
|
| FloatRect inflatedRect = rect;
|
| inflatedRect.inflate(1);
|
| m_dirtyRect.unite(inflatedRect);
|
|
|