Index: src/utils/debugger/SkDebugCanvas.cpp |
diff --git a/src/utils/debugger/SkDebugCanvas.cpp b/src/utils/debugger/SkDebugCanvas.cpp |
index 8f6dc1b7a279f42a25ce5cfb5a36a54e85e12b41..277e86d84ddb519126ed8f59375905e5a21ce4f4 100644 |
--- a/src/utils/debugger/SkDebugCanvas.cpp |
+++ b/src/utils/debugger/SkDebugCanvas.cpp |
@@ -590,9 +590,9 @@ void SkDebugCanvas::willRestore() { |
this->INHERITED::willRestore(); |
} |
-void SkDebugCanvas::willSave(SaveFlags flags) { |
- this->addDrawCommand(new SkSaveCommand(flags)); |
- this->INHERITED::willSave(flags); |
+void SkDebugCanvas::willSave() { |
+ this->addDrawCommand(new SkSaveCommand()); |
+ this->INHERITED::willSave(); |
} |
SkCanvas::SaveLayerStrategy SkDebugCanvas::willSaveLayer(const SkRect* bounds, const SkPaint* paint, |