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; |