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

Unified Diff: content/browser/renderer_host/input/touch_selection_controller_unittest.cc

Issue 679243002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
Index: content/browser/renderer_host/input/touch_selection_controller_unittest.cc
diff --git a/content/browser/renderer_host/input/touch_selection_controller_unittest.cc b/content/browser/renderer_host/input/touch_selection_controller_unittest.cc
index 3b20b028c0631cc3bdbf11b7d42c84492864c1b0..ca4af3469493dd5acee26909598bf5be8ad5c31b 100644
--- a/content/browser/renderer_host/input/touch_selection_controller_unittest.cc
+++ b/content/browser/renderer_host/input/touch_selection_controller_unittest.cc
@@ -46,17 +46,17 @@ class TouchSelectionControllerTest : public testing::Test,
animation_enabled_(true),
dragging_enabled_(false) {}
- virtual ~TouchSelectionControllerTest() {}
+ ~TouchSelectionControllerTest() override {}
// testing::Test implementation.
- virtual void SetUp() override {
+ void SetUp() override {
controller_.reset(new TouchSelectionController(
this,
base::TimeDelta::FromMilliseconds(kDefaultTapTimeoutMs),
kDefaulTapSlop));
}
- virtual void TearDown() override { controller_.reset(); }
+ void TearDown() override { controller_.reset(); }
// TouchSelectionControllerClient implementation.

Powered by Google App Engine
This is Rietveld 408576698