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

Unified Diff: tools/render_pdfs_main.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 | « tools/iOSShell.h ('k') | tools/skpdiff/SkCLImageDiffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/render_pdfs_main.cpp
diff --git a/tools/render_pdfs_main.cpp b/tools/render_pdfs_main.cpp
index 5e3385ef9b5edae9b0d91370794fd23b9d694a89..678787780bff7846af76cee0baa95046a4386454 100644
--- a/tools/render_pdfs_main.cpp
+++ b/tools/render_pdfs_main.cpp
@@ -122,11 +122,11 @@ namespace {
class NullWStream : public SkWStream {
public:
NullWStream() : fBytesWritten(0) { }
- virtual bool write(const void*, size_t size) SK_OVERRIDE {
+ bool write(const void*, size_t size) SK_OVERRIDE {
fBytesWritten += size;
return true;
}
- virtual size_t bytesWritten() const SK_OVERRIDE { return fBytesWritten; }
+ size_t bytesWritten() const SK_OVERRIDE { return fBytesWritten; }
size_t fBytesWritten;
};
} // namespace
« no previous file with comments | « tools/iOSShell.h ('k') | tools/skpdiff/SkCLImageDiffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698