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

Unified Diff: Source/platform/graphics/InterceptingCanvas.h

Issue 777413004: clear() is now an alias for drawPaint, and will be deprecated as a virtual (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | Source/platform/graphics/LoggingCanvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/InterceptingCanvas.h
diff --git a/Source/platform/graphics/InterceptingCanvas.h b/Source/platform/graphics/InterceptingCanvas.h
index 94153d662c11cac1d076ac3b430276a58e1d5423..230a779742d58dd4028a05db1cd128503de08d62 100644
--- a/Source/platform/graphics/InterceptingCanvas.h
+++ b/Source/platform/graphics/InterceptingCanvas.h
@@ -40,7 +40,6 @@ public:
InterceptingCanvas(SkBitmap bitmap) : SkCanvas(bitmap), m_depthCount(0) { };
InterceptingCanvas(int width, int height) : SkCanvas(width, height), m_depthCount(0) { };
- virtual void clear(SkColor) override = 0;
virtual void drawPaint(const SkPaint&) override = 0;
virtual void drawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override = 0;
virtual void drawRect(const SkRect&, const SkPaint&) override = 0;
« no previous file with comments | « no previous file | Source/platform/graphics/LoggingCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698