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

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

Issue 454993002: preemptive add new virtual for onDrawPicture (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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: Source/platform/graphics/ReplayingCanvas.h
diff --git a/Source/platform/graphics/ReplayingCanvas.h b/Source/platform/graphics/ReplayingCanvas.h
index c0398117712c5ddd205e3e14b82c521a94b4fb16..4c7cd7ca5a2c058d07375897ccc7f16c73078d8b 100644
--- a/Source/platform/graphics/ReplayingCanvas.h
+++ b/Source/platform/graphics/ReplayingCanvas.h
@@ -73,7 +73,8 @@ public:
virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) OVERRIDE;
virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) OVERRIDE;
virtual void onClipRegion(const SkRegion&, SkRegion::Op) OVERRIDE;
- virtual void onDrawPicture(const SkPicture*) OVERRIDE;
+ virtual void onDrawPicture(const SkPicture*);
+ virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) OVERRIDE;
virtual void didSetMatrix(const SkMatrix&) OVERRIDE;
virtual void didConcat(const SkMatrix&) OVERRIDE;
virtual void willSave() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698