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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp

Issue 2690583002: Make cc/paint have concrete types (Closed)
Patch Set: PaintRecord as typedef, fixup playback calls Created 3 years, 9 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/svg/graphics/SVGImageTest.cpp
diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp b/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
index e455c7f8bd2d29502ff0933e6dcf1d0cd210b6b9..8a59d93099a9ad2b3d64858f03d0b30d7918a0db 100644
--- a/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
+++ b/third_party/WebKit/Source/core/svg/graphics/SVGImageTest.cpp
@@ -30,7 +30,7 @@ class SVGImageTest : public ::testing::Test {
void pumpFrame() {
Image* image = m_image.get();
std::unique_ptr<SkCanvas> nullCanvas = SkMakeNullCanvas();
- PaintCanvasPassThrough canvas(nullCanvas.get());
+ PaintCanvas canvas(nullCanvas.get());
PaintFlags flags;
FloatRect dummyRect(0, 0, 100, 100);
image->draw(&canvas, flags, dummyRect, dummyRect,
« no previous file with comments | « third_party/WebKit/Source/core/paint/SVGShapePainter.cpp ('k') | third_party/WebKit/Source/platform/exported/WebFont.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698