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

Unified Diff: experimental/tools/multipage_pdf_profiler.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 | « experimental/tools/PageCachingDocument.cpp ('k') | gm/aaclip.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/tools/multipage_pdf_profiler.cpp
diff --git a/experimental/tools/multipage_pdf_profiler.cpp b/experimental/tools/multipage_pdf_profiler.cpp
index 4f8eae2fb6fd8f3932fcf1b5c0acceb1fad20e7d..337db1f91a423b1769aa3183461b73f5af173772 100644
--- a/experimental/tools/multipage_pdf_profiler.cpp
+++ b/experimental/tools/multipage_pdf_profiler.cpp
@@ -31,11 +31,11 @@ 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 {
+ size_t bytesWritten() const SK_OVERRIDE {
return fBytesWritten;
}
size_t fBytesWritten;
« no previous file with comments | « experimental/tools/PageCachingDocument.cpp ('k') | gm/aaclip.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698