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

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

Issue 134443002: Update fetch / loader classes to use OVERRIDE / FINAL when needed (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No OVERRIDE / FINAL in web Created 6 years, 11 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/MemoryCache.h ('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 44993966cddc9aef313b97500533c047a045c618..be1867d48c2928aafc530bcac97e1e7c423e306f 100644
--- a/Source/core/fetch/MockImageResourceClient.h
+++ b/Source/core/fetch/MockImageResourceClient.h
@@ -37,7 +37,7 @@
namespace WebCore {
-class MockImageResourceClient : public WebCore::ImageResourceClient {
+class MockImageResourceClient FINAL : public WebCore::ImageResourceClient {
public:
MockImageResourceClient()
: m_imageChangedCount(0)
@@ -46,12 +46,12 @@ public:
}
virtual ~MockImageResourceClient() { }
- virtual void imageChanged(ImageResource*, const IntRect*)
+ virtual void imageChanged(ImageResource*, const IntRect*) OVERRIDE
{
m_imageChangedCount++;
}
- virtual void notifyFinished(Resource*)
+ virtual void notifyFinished(Resource*) OVERRIDE
{
ASSERT_FALSE(m_notifyFinishedCalled);
m_notifyFinishedCalled = true;
« no previous file with comments | « Source/core/fetch/MemoryCache.h ('k') | Source/core/fetch/RawResource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698