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

Unified Diff: ash/touch/touchscreen_util_unittest.cc

Issue 800983006: Update {virtual,override,final} to follow C++11 style in ash. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Workaround Created 5 years, 11 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
« no previous file with comments | « ash/touch/touch_transformer_controller.h ('k') | ash/virtual_keyboard_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « ash/touch/touch_transformer_controller.h ('k') | ash/virtual_keyboard_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698