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

Unified Diff: Source/core/fetch/MockImageResourceClient.h

Issue 631223002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[fetch|fileapi] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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/core/fetch/MemoryCacheTest.cpp ('k') | Source/core/fetch/RawResource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/MockImageResourceClient.h
diff --git a/Source/core/fetch/MockImageResourceClient.h b/Source/core/fetch/MockImageResourceClient.h
index 60161f1b31455bbe39e61faf6442246731cab022..5c45cf4d1d6c7c2ec5a1c3eb1782e2cc63329050 100644
--- a/Source/core/fetch/MockImageResourceClient.h
+++ b/Source/core/fetch/MockImageResourceClient.h
@@ -37,7 +37,7 @@
namespace blink {
-class MockImageResourceClient FINAL : public blink::ImageResourceClient {
+class MockImageResourceClient final : public blink::ImageResourceClient {
public:
MockImageResourceClient()
: m_imageChangedCount(0)
@@ -46,12 +46,12 @@ public:
}
virtual ~MockImageResourceClient() { }
- virtual void imageChanged(ImageResource*, const IntRect*) OVERRIDE
+ virtual void imageChanged(ImageResource*, const IntRect*) override
{
m_imageChangedCount++;
}
- virtual void notifyFinished(Resource*) OVERRIDE
+ virtual void notifyFinished(Resource*) override
{
ASSERT_FALSE(m_notifyFinishedCalled);
m_notifyFinishedCalled = true;
« no previous file with comments | « Source/core/fetch/MemoryCacheTest.cpp ('k') | Source/core/fetch/RawResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698