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

Unified Diff: Source/platform/DragImageTest.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 | « no previous file | Source/platform/JSONValues.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/DragImageTest.cpp
diff --git a/Source/platform/DragImageTest.cpp b/Source/platform/DragImageTest.cpp
index cf6c6be14a3bb0046b10809259db1d8742e0943d..e0e2cc6b77072ce26569f5cfe2b7874f7124ac23 100644
--- a/Source/platform/DragImageTest.cpp
+++ b/Source/platform/DragImageTest.cpp
@@ -67,12 +67,12 @@ public:
m_nativeImage = NativeImageSkia::create(bitmap);
}
- 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;
@@ -81,16 +81,16 @@ public:
}
// Stub implementations of pure virtual Image functions.
- virtual void destroyDecodedData(bool) OVERRIDE
+ virtual void destroyDecodedData(bool) override
{
}
- virtual bool currentFrameKnownToBeOpaque() OVERRIDE
+ virtual bool currentFrameKnownToBeOpaque() override
{
return false;
}
- virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode) OVERRIDE
+ virtual void draw(GraphicsContext*, const FloatRect&, const FloatRect&, CompositeOperator, blink::WebBlendMode) override
{
}
« no previous file with comments | « no previous file | Source/platform/JSONValues.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698