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

Unified Diff: Source/platform/image-decoders/jpeg/JPEGImageDecoder.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/jpeg/JPEGImageDecoder.h
diff --git a/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h b/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h
index ed22d8345e3b984cb28287ecf2cfc82337f90a33..a1b5154fe019f8f12c7122826c9063fc1da78d85 100644
--- a/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h
+++ b/Source/platform/image-decoders/jpeg/JPEGImageDecoder.h
@@ -44,20 +44,20 @@ public:
virtual ~JPEGImageDecoder();
// ImageDecoder
- virtual String filenameExtension() const OVERRIDE { return "jpg"; }
- virtual bool isSizeAvailable() OVERRIDE;
- virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
- virtual IntSize decodedSize() const OVERRIDE { return m_decodedSize; }
- virtual IntSize decodedYUVSize(int component, SizeType) const OVERRIDE;
- virtual bool setSize(unsigned width, unsigned height) OVERRIDE;
- virtual ImageFrame* frameBufferAtIndex(size_t) OVERRIDE;
+ virtual String filenameExtension() const override { return "jpg"; }
+ virtual bool isSizeAvailable() override;
+ virtual bool hasColorProfile() const override { return m_hasColorProfile; }
+ virtual IntSize decodedSize() const override { return m_decodedSize; }
+ virtual IntSize decodedYUVSize(int component, SizeType) const override;
+ virtual bool setSize(unsigned width, unsigned height) override;
+ virtual ImageFrame* frameBufferAtIndex(size_t) override;
// CAUTION: setFailed() deletes |m_reader|. Be careful to avoid
// accessing deleted memory, especially when calling this from inside
// JPEGImageReader!
- virtual bool setFailed() OVERRIDE;
- virtual bool canDecodeToYUV() const OVERRIDE;
- virtual bool decodeToYUV() OVERRIDE;
- virtual void setImagePlanes(PassOwnPtr<ImagePlanes>) OVERRIDE;
+ virtual bool setFailed() override;
+ virtual bool canDecodeToYUV() const override;
+ virtual bool decodeToYUV() override;
+ virtual void setImagePlanes(PassOwnPtr<ImagePlanes>) override;
bool hasImagePlanes() const { return m_imagePlanes; }
bool outputScanlines();
« no previous file with comments | « Source/platform/image-decoders/ico/ICOImageDecoder.h ('k') | Source/platform/image-decoders/png/PNGImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698