| Index: Source/platform/scroll/FramelessScrollView.h
|
| diff --git a/Source/platform/scroll/FramelessScrollView.h b/Source/platform/scroll/FramelessScrollView.h
|
| index 756bee8294355c91c22538505f9825d0cf65d349..2f15cbe9eb3875ec2f51afcb9477f72c994c7bf8 100644
|
| --- a/Source/platform/scroll/FramelessScrollView.h
|
| +++ b/Source/platform/scroll/FramelessScrollView.h
|
| @@ -74,17 +74,17 @@ public:
|
| virtual IntRect scrollableAreaBoundingBox() const OVERRIDE;
|
|
|
| // Widget public methods:
|
| - virtual void invalidateRect(const IntRect&);
|
| + virtual void invalidateRect(const IntRect&) OVERRIDE;
|
|
|
| // ScrollView public methods:
|
| - virtual HostWindow* hostWindow() const;
|
| - virtual IntRect windowClipRect(bool clipToContents = true) const;
|
| + virtual HostWindow* hostWindow() const OVERRIDE;
|
| + virtual IntRect windowClipRect(bool clipToContents = true) const OVERRIDE;
|
|
|
| protected:
|
| // ScrollView protected methods:
|
| - virtual void paintContents(GraphicsContext*, const IntRect&);
|
| - virtual void contentsResized();
|
| - virtual void scrollbarExistenceDidChange();
|
| + virtual void paintContents(GraphicsContext*, const IntRect&) OVERRIDE;
|
| + virtual void contentsResized() OVERRIDE;
|
| + virtual void scrollbarExistenceDidChange() OVERRIDE;
|
|
|
| private:
|
| FramelessScrollViewClient* m_client;
|
|
|