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

Unified Diff: tests/PictureTest.cpp

Issue 340403003: SaveFlags be-gone (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Created 6 years, 6 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
« include/core/SkCanvas.h ('K') | « tests/CanvasTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/PictureTest.cpp
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp
index 6969524bd7156d049cf7dd611ac2d8de86de541e..cf33561b01116bd86266d366043961477a909290 100644
--- a/tests/PictureTest.cpp
+++ b/tests/PictureTest.cpp
@@ -937,9 +937,9 @@ public:
return this->INHERITED::willSaveLayer(bounds, paint, flags);
}
- virtual void willSave(SaveFlags flags) SK_OVERRIDE {
+ virtual void willSave() SK_OVERRIDE {
++fSaveCount;
- this->INHERITED::willSave(flags);
+ this->INHERITED::willSave();
}
virtual void willRestore() SK_OVERRIDE {
« include/core/SkCanvas.h ('K') | « tests/CanvasTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698