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

Unified Diff: Source/platform/image-decoders/ico/ICOImageDecoder.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/ico/ICOImageDecoder.h
diff --git a/Source/platform/image-decoders/ico/ICOImageDecoder.h b/Source/platform/image-decoders/ico/ICOImageDecoder.h
index 71490ca59b114c6aa7da27096abe02936ecf04c8..08f81cb0fd74c0eed0a599c02fd889d984bee7df 100644
--- a/Source/platform/image-decoders/ico/ICOImageDecoder.h
+++ b/Source/platform/image-decoders/ico/ICOImageDecoder.h
@@ -44,19 +44,19 @@ public:
virtual ~ICOImageDecoder();
// ImageDecoder
- virtual String filenameExtension() const OVERRIDE { return "ico"; }
- virtual void setData(SharedBuffer*, bool allDataReceived) OVERRIDE;
- virtual bool isSizeAvailable() OVERRIDE;
- virtual IntSize size() const OVERRIDE;
- virtual IntSize frameSizeAtIndex(size_t) const OVERRIDE;
- virtual bool setSize(unsigned width, unsigned height) OVERRIDE;
- virtual size_t frameCount() OVERRIDE;
- virtual ImageFrame* frameBufferAtIndex(size_t) OVERRIDE;
+ virtual String filenameExtension() const override { return "ico"; }
+ virtual void setData(SharedBuffer*, bool allDataReceived) override;
+ virtual bool isSizeAvailable() override;
+ virtual IntSize size() const override;
+ virtual IntSize frameSizeAtIndex(size_t) const override;
+ virtual bool setSize(unsigned width, unsigned height) override;
+ virtual size_t frameCount() override;
+ virtual ImageFrame* frameBufferAtIndex(size_t) override;
// CAUTION: setFailed() deletes all readers and decoders. Be careful to
// avoid accessing deleted memory, especially when calling this from
// inside BMPImageReader!
- virtual bool setFailed() OVERRIDE;
- virtual bool hotSpot(IntPoint&) const OVERRIDE;
+ virtual bool setFailed() override;
+ virtual bool hotSpot(IntPoint&) const override;
private:
enum ImageType {
« no previous file with comments | « Source/platform/image-decoders/gif/GIFImageDecoder.h ('k') | Source/platform/image-decoders/jpeg/JPEGImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698