| Index: third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp b/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
|
| index 07834b3c8415e5c7f09dac6d550345c473c4cb57..88413ba71545dc320724af1f34b2bfdb71eb6092 100644
|
| --- a/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp
|
| @@ -55,8 +55,8 @@ class TestImageAnimated : public Image {
|
| }
|
| IntSize size() const override { return IntSize(); }
|
| void destroyDecodedData() override {}
|
| - void draw(SkCanvas*,
|
| - const SkPaint&,
|
| + void draw(PaintCanvas*,
|
| + const PaintFlags&,
|
| const FloatRect& dstRect,
|
| const FloatRect& srcRect,
|
| RespectImageOrientationEnum,
|
| @@ -86,8 +86,8 @@ class TestImageWithContrast : public Image {
|
| }
|
| IntSize size() const override { return IntSize(); }
|
| void destroyDecodedData() override {}
|
| - void draw(SkCanvas*,
|
| - const SkPaint&,
|
| + void draw(PaintCanvas*,
|
| + const PaintFlags&,
|
| const FloatRect& dstRect,
|
| const FloatRect& srcRect,
|
| RespectImageOrientationEnum,
|
| @@ -121,8 +121,8 @@ class TestImageLowQuality : public Image {
|
| }
|
| IntSize size() const override { return IntSize(1, 1); }
|
| void destroyDecodedData() override {}
|
| - void draw(SkCanvas*,
|
| - const SkPaint&,
|
| + void draw(PaintCanvas*,
|
| + const PaintFlags&,
|
| const FloatRect& dstRect,
|
| const FloatRect& srcRect,
|
| RespectImageOrientationEnum,
|
|
|