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