| Index: third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp | 
| diff --git a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp | 
| index 8f6a2118df79fff3ab5205bf737a89ea8dfe5db3..4c805ea9c5f6127e67f9c0375043c11312112e89 100644 | 
| --- a/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp | 
| +++ b/third_party/WebKit/Source/platform/graphics/BitmapImageTest.cpp | 
| @@ -46,14 +46,11 @@ public: | 
| public: | 
| FakeImageObserver() : m_lastDecodedSizeChangedDelta(0) { } | 
|  | 
| -        virtual void decodedSizeChanged(const Image*, int delta) | 
| -        { | 
| -            m_lastDecodedSizeChangedDelta = delta; | 
| -        } | 
| +        virtual void decodedSizeChanged(const Image*, int delta) { m_lastDecodedSizeChangedDelta = delta; } | 
| +        void deviceProfileChanged(const Image*, ColorSpaceProfile*) override { } | 
| void didDraw(const Image*) override { } | 
| bool shouldPauseAnimation(const Image*) override { return false; } | 
| void animationAdvanced(const Image*) override { } | 
| - | 
| virtual void changedInRect(const Image*, const IntRect&) { } | 
|  | 
| int m_lastDecodedSizeChangedDelta; | 
|  |