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

Unified Diff: Source/web/tests/ScrollAnimatorNoneTest.cpp

Issue 1230533002: Fix virtual/override/final usage in Source/web/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/web/tests/PrerenderingTest.cpp ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/tests/ScrollAnimatorNoneTest.cpp
diff --git a/Source/web/tests/ScrollAnimatorNoneTest.cpp b/Source/web/tests/ScrollAnimatorNoneTest.cpp
index c4492b88e13824630ab5f5ff42c1099cbf0acfca..ce994260aa79e6bd9a5d1f4c29c8b5bcb7ab9844 100644
--- a/Source/web/tests/ScrollAnimatorNoneTest.cpp
+++ b/Source/web/tests/ScrollAnimatorNoneTest.cpp
@@ -66,13 +66,13 @@ public:
MOCK_CONST_METHOD0(scrollbarsCanBeActive, bool());
MOCK_CONST_METHOD0(scrollableAreaBoundingBox, IntRect());
- virtual bool userInputScrollable(ScrollbarOrientation) const override { return true; }
- virtual bool shouldPlaceVerticalScrollbarOnLeft() const override { return false; }
- virtual IntPoint scrollPosition() const override { return IntPoint(); }
- virtual int visibleHeight() const override { return 768; }
- virtual int visibleWidth() const override { return 1024; }
- virtual bool scrollAnimatorEnabled() const override { return m_scrollAnimatorEnabled; }
- virtual int pageStep(ScrollbarOrientation) const override { return 0; }
+ bool userInputScrollable(ScrollbarOrientation) const override { return true; }
+ bool shouldPlaceVerticalScrollbarOnLeft() const override { return false; }
+ IntPoint scrollPosition() const override { return IntPoint(); }
+ int visibleHeight() const override { return 768; }
+ int visibleWidth() const override { return 1024; }
+ bool scrollAnimatorEnabled() const override { return m_scrollAnimatorEnabled; }
+ int pageStep(ScrollbarOrientation) const override { return 0; }
DEFINE_INLINE_VIRTUAL_TRACE()
{
« no previous file with comments | « Source/web/tests/PrerenderingTest.cpp ('k') | Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698