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

Unified Diff: Source/platform/image-decoders/png/PNGImageDecoder.h

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix Created 6 years, 2 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
Index: Source/platform/image-decoders/png/PNGImageDecoder.h
diff --git a/Source/platform/image-decoders/png/PNGImageDecoder.h b/Source/platform/image-decoders/png/PNGImageDecoder.h
index 1b7339634120388c7585c8acdc08f6a1d2dd3236..8232602d30605c2507b58c091a7d46a9605e90ca 100644
--- a/Source/platform/image-decoders/png/PNGImageDecoder.h
+++ b/Source/platform/image-decoders/png/PNGImageDecoder.h
@@ -42,14 +42,14 @@ public:
virtual ~PNGImageDecoder();
// ImageDecoder
- virtual String filenameExtension() const OVERRIDE { return "png"; }
- virtual bool isSizeAvailable() OVERRIDE;
- virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
- virtual ImageFrame* frameBufferAtIndex(size_t) OVERRIDE;
+ virtual String filenameExtension() const override { return "png"; }
+ virtual bool isSizeAvailable() override;
+ virtual bool hasColorProfile() const override { return m_hasColorProfile; }
+ virtual ImageFrame* frameBufferAtIndex(size_t) override;
// CAUTION: setFailed() deletes |m_reader|. Be careful to avoid
// accessing deleted memory, especially when calling this from inside
// PNGImageReader!
- virtual bool setFailed() OVERRIDE;
+ virtual bool setFailed() override;
// Callbacks from libpng
void headerAvailable();
« no previous file with comments | « Source/platform/image-decoders/jpeg/JPEGImageDecoder.h ('k') | Source/platform/image-decoders/webp/WEBPImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698