| 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.
|
|
|
|
|