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

Unified Diff: content/renderer/input/input_scroll_elasticity_controller_unittest.cc

Issue 823713002: Standardize usage of virtual/override/final specifiers in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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
Index: content/renderer/input/input_scroll_elasticity_controller_unittest.cc
diff --git a/content/renderer/input/input_scroll_elasticity_controller_unittest.cc b/content/renderer/input/input_scroll_elasticity_controller_unittest.cc
index be1d2e6052e823aec8d0457921e7870e7f2ff54a..1e52db2d6299737dcc55a4151e3e370e622266a2 100644
--- a/content/renderer/input/input_scroll_elasticity_controller_unittest.cc
+++ b/content/renderer/input/input_scroll_elasticity_controller_unittest.cc
@@ -29,7 +29,7 @@ class MockScrollElasticityHelper : public cc::ScrollElasticityHelper {
pinned_pos_x_(false),
pinned_neg_y_(false),
pinned_pos_y_(false) {}
- virtual ~MockScrollElasticityHelper() {}
+ ~MockScrollElasticityHelper() override {}
// cc::ScrollElasticityHelper implementation:
gfx::Vector2dF StretchAmount() override { return stretch_amount_; }
@@ -78,7 +78,7 @@ class ScrollElasticityControllerTest : public testing::Test {
: controller_(&helper_),
input_event_count_(0),
current_time_(base::TimeTicks::FromInternalValue(100000000ull)) {}
- virtual ~ScrollElasticityControllerTest() {}
+ ~ScrollElasticityControllerTest() override {}
void SendMouseWheelEvent(
Phase phase,

Powered by Google App Engine
This is Rietveld 408576698