| Index: ash/touch/touchscreen_util_unittest.cc
|
| diff --git a/ash/touch/touchscreen_util_unittest.cc b/ash/touch/touchscreen_util_unittest.cc
|
| index 0685b66fc9b94a9adbedc9e7ab3139aae007730d..a80c357cdb61a3bd3af3eb4a0d8493c577377468 100644
|
| --- a/ash/touch/touchscreen_util_unittest.cc
|
| +++ b/ash/touch/touchscreen_util_unittest.cc
|
| @@ -15,9 +15,9 @@ namespace ash {
|
| class TouchscreenUtilTest : public testing::Test {
|
| public:
|
| TouchscreenUtilTest() {}
|
| - virtual ~TouchscreenUtilTest() {}
|
| + ~TouchscreenUtilTest() override {}
|
|
|
| - virtual void SetUp() override {
|
| + void SetUp() override {
|
| // Internal display will always match to internal touchscreen. If internal
|
| // touchscreen can't be detected, it is then associated to a touch screen
|
| // with matching size.
|
| @@ -56,9 +56,7 @@ class TouchscreenUtilTest : public testing::Test {
|
| }
|
| }
|
|
|
| - virtual void TearDown() override {
|
| - displays_.clear();
|
| - }
|
| + void TearDown() override { displays_.clear(); }
|
|
|
| protected:
|
| std::vector<DisplayInfo> displays_;
|
|
|