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

Unified Diff: third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp

Issue 2752593002: cc: Make PaintCanvas abstract (Closed)
Patch Set: Remove default parameters on virtual functions 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/platform/graphics/GraphicsContext.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
index bdbf4456a644396fdd4449d1a7f0acbed7711bc2..be8cab138964acf9a47307b39c97dc8194edd8f6 100644
--- a/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
+++ b/third_party/WebKit/Source/platform/graphics/GraphicsContext.cpp
@@ -82,7 +82,7 @@ GraphicsContext::GraphicsContext(PaintController& paintController,
if (contextDisabled()) {
DEFINE_STATIC_LOCAL(SkCanvas*, nullSkCanvas,
(SkMakeNullCanvas().release()));
- DEFINE_STATIC_LOCAL(PaintCanvas, nullCanvas, (nullSkCanvas));
+ DEFINE_STATIC_LOCAL(SkiaPaintCanvas, nullCanvas, (nullSkCanvas));
m_canvas = &nullCanvas;
}
}

Powered by Google App Engine
This is Rietveld 408576698