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

Unified Diff: experimental/tools/multipage_pdf_profiler.cpp

Issue 1037793002: C++11 override should now be supported by all of {bots,Chrome,Android,Mozilla} (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: git cl web Created 5 years, 9 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/SkDmuxWStream.h ('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 337db1f91a423b1769aa3183461b73f5af173772..08a32a24361911d4cbddeee3ea5150999914acb9 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) {
}
- bool write(const void*, size_t size) SK_OVERRIDE {
+ bool write(const void*, size_t size) override {
fBytesWritten += size;
return true;
}
- size_t bytesWritten() const SK_OVERRIDE {
+ size_t bytesWritten() const override {
return fBytesWritten;
}
size_t fBytesWritten;
« no previous file with comments | « experimental/tools/SkDmuxWStream.h ('k') | gm/aaclip.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698