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

Unified Diff: src/doc/SkDocument_PDF.cpp

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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
« no previous file with comments | « src/core/SkXfermode_proccoeff.h ('k') | src/effects/SkAlphaThresholdFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/doc/SkDocument_PDF.cpp
diff --git a/src/doc/SkDocument_PDF.cpp b/src/doc/SkDocument_PDF.cpp
index 834cbc3a96ded17bc16c2ae2a21b4258ca9fcff8..de65efe8c8cdaae59ddd7f0b4a35d464499fdfbc 100644
--- a/src/doc/SkDocument_PDF.cpp
+++ b/src/doc/SkDocument_PDF.cpp
@@ -49,7 +49,7 @@ protected:
return fCanvas;
}
- virtual void onEndPage() SK_OVERRIDE {
+ void onEndPage() SK_OVERRIDE {
SkASSERT(fCanvas);
SkASSERT(fDevice);
@@ -63,7 +63,7 @@ protected:
fDevice = NULL;
}
- virtual bool onClose(SkWStream* stream) SK_OVERRIDE {
+ bool onClose(SkWStream* stream) SK_OVERRIDE {
SkASSERT(NULL == fCanvas);
SkASSERT(NULL == fDevice);
@@ -73,7 +73,7 @@ protected:
return success;
}
- virtual void onAbort() SK_OVERRIDE {
+ void onAbort() SK_OVERRIDE {
SkDELETE(fDoc);
fDoc = NULL;
}
« no previous file with comments | « src/core/SkXfermode_proccoeff.h ('k') | src/effects/SkAlphaThresholdFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698