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

Unified Diff: Source/platform/image-decoders/webp/WEBPImageDecoder.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
« no previous file with comments | « Source/platform/image-decoders/png/PNGImageDecoder.h ('k') | Source/platform/mac/ScrollAnimatorMac.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/image-decoders/webp/WEBPImageDecoder.h
diff --git a/Source/platform/image-decoders/webp/WEBPImageDecoder.h b/Source/platform/image-decoders/webp/WEBPImageDecoder.h
index f7966ea01707b0725018798087b3e68cab008862..05307f032c8897a51f11de312ea56f6a8963a587 100644
--- a/Source/platform/image-decoders/webp/WEBPImageDecoder.h
+++ b/Source/platform/image-decoders/webp/WEBPImageDecoder.h
@@ -41,16 +41,16 @@ public:
WEBPImageDecoder(ImageSource::AlphaOption, ImageSource::GammaAndColorProfileOption, size_t maxDecodedBytes);
virtual ~WEBPImageDecoder();
- virtual String filenameExtension() const OVERRIDE { return "webp"; }
- virtual bool isSizeAvailable() OVERRIDE;
- virtual bool hasColorProfile() const OVERRIDE { return m_hasColorProfile; }
- virtual size_t frameCount() OVERRIDE;
- virtual ImageFrame* frameBufferAtIndex(size_t) OVERRIDE;
- virtual void setData(SharedBuffer* data, bool allDataReceived) OVERRIDE;
- virtual int repetitionCount() const OVERRIDE;
- virtual bool frameIsCompleteAtIndex(size_t) const OVERRIDE;
- virtual float frameDurationAtIndex(size_t) const OVERRIDE;
- virtual size_t clearCacheExceptFrame(size_t) OVERRIDE;
+ virtual String filenameExtension() const override { return "webp"; }
+ virtual bool isSizeAvailable() override;
+ virtual bool hasColorProfile() const override { return m_hasColorProfile; }
+ virtual size_t frameCount() override;
+ virtual ImageFrame* frameBufferAtIndex(size_t) override;
+ virtual void setData(SharedBuffer* data, bool allDataReceived) override;
+ virtual int repetitionCount() const override;
+ virtual bool frameIsCompleteAtIndex(size_t) const override;
+ virtual float frameDurationAtIndex(size_t) const override;
+ virtual size_t clearCacheExceptFrame(size_t) override;
private:
bool decode(const uint8_t* dataBytes, size_t dataSize, bool onlySize, size_t frameIndex);
@@ -74,7 +74,7 @@ private:
bool updateDemuxer();
bool initFrameBuffer(size_t frameIndex);
void applyPostProcessing(size_t frameIndex);
- virtual void clearFrameBuffer(size_t frameIndex) OVERRIDE;
+ virtual void clearFrameBuffer(size_t frameIndex) override;
WebPDemuxer* m_demux;
WebPDemuxState m_demuxState;
« no previous file with comments | « Source/platform/image-decoders/png/PNGImageDecoder.h ('k') | Source/platform/mac/ScrollAnimatorMac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698