Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Unified Diff: third_party/WebKit/Source/core/layout/ImageQualityControllerTest.cpp

Issue 2640983002: Rename paint data structures (Closed)
Patch Set: DrawingDisplayItem Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698