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

Unified Diff: Source/platform/graphics/ImageLayerChromiumTest.cpp

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/graphics/ImageFrameGeneratorTest.cpp ('k') | Source/platform/graphics/InterceptingCanvas.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/ImageLayerChromiumTest.cpp
diff --git a/Source/platform/graphics/ImageLayerChromiumTest.cpp b/Source/platform/graphics/ImageLayerChromiumTest.cpp
index 3bb8e23491c4d9e981656b47d561e93924fa21a7..d36330179e70a8d15394d6e7b1d9fcf97baff60b 100644
--- a/Source/platform/graphics/ImageLayerChromiumTest.cpp
+++ b/Source/platform/graphics/ImageLayerChromiumTest.cpp
@@ -37,9 +37,9 @@ namespace {
class MockGraphicsLayerClient : public GraphicsLayerClient {
public:
- virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { }
- virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) OVERRIDE { }
- virtual String debugName(const GraphicsLayer*) OVERRIDE { return String(); }
+ virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) override { }
+ virtual void paintContents(const GraphicsLayer*, GraphicsContext&, GraphicsLayerPaintingPhase, const IntRect& inClip) override { }
+ virtual String debugName(const GraphicsLayer*) override { return String(); }
};
class TestImage : public Image {
@@ -59,22 +59,22 @@ public:
m_nativeImage = NativeImageSkia::create(bitmap);
}
- virtual bool isBitmapImage() const OVERRIDE
+ virtual bool isBitmapImage() const override
{
return true;
}
- virtual bool currentFrameKnownToBeOpaque() OVERRIDE
+ virtual bool currentFrameKnownToBeOpaque() override
{
return m_nativeImage->bitmap().isOpaque();
}
- virtual IntSize size() const OVERRIDE
+ virtual IntSize size() const override
{
return m_size;
}
- virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() OVERRIDE
+ virtual PassRefPtr<NativeImageSkia> nativeImageForCurrentFrame() override
{
if (m_size.isZero())
return nullptr;
@@ -83,11 +83,11 @@ public:
}
// Stub implementations of pure virtual Image functions.
- virtual void destroyDecodedData(bool) OVERRIDE
+ virtual void destroyDecodedData(bool) override
{
}
- virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, WebBlendMode) OVERRIDE
+ virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, WebBlendMode) override
{
}
« no previous file with comments | « Source/platform/graphics/ImageFrameGeneratorTest.cpp ('k') | Source/platform/graphics/InterceptingCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698