| Index: content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| diff --git a/content/browser/renderer_host/input/input_router_impl_unittest.cc b/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| index 732682113476fc295c7f38d96442e80d7ef96e80..5b3d7d7e0d68b42828524344529cd221857501c1 100644
|
| --- a/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| +++ b/content/browser/renderer_host/input/input_router_impl_unittest.cc
|
| @@ -142,11 +142,11 @@ float PinchScaleToWheelDelta(float scale) {
|
| class InputRouterImplTest : public testing::Test {
|
| public:
|
| InputRouterImplTest() {}
|
| - virtual ~InputRouterImplTest() {}
|
| + ~InputRouterImplTest() override {}
|
|
|
| protected:
|
| // testing::Test
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| browser_context_.reset(new TestBrowserContext());
|
| process_.reset(new MockRenderProcessHost(browser_context_.get()));
|
| client_.reset(new MockInputRouterClient());
|
| @@ -162,7 +162,7 @@ class InputRouterImplTest : public testing::Test {
|
| ack_handler_->set_input_router(input_router());
|
| }
|
|
|
| - virtual void TearDown() override {
|
| + void TearDown() override {
|
| // Process all pending tasks to avoid leaks.
|
| base::MessageLoop::current()->RunUntilIdle();
|
|
|
|
|