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

Unified Diff: content/browser/renderer_host/input/touch_emulator_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_emulator_unittest.cc
diff --git a/content/browser/renderer_host/input/touch_emulator_unittest.cc b/content/browser/renderer_host/input/touch_emulator_unittest.cc
index caaf894da23c6f1620e101b09c8ef0faa9995689..d072db139d7331965ad719fe35becaac48d20fbe 100644
--- a/content/browser/renderer_host/input/touch_emulator_unittest.cc
+++ b/content/browser/renderer_host/input/touch_emulator_unittest.cc
@@ -43,10 +43,10 @@ class TouchEmulatorTest : public testing::Test,
event_time_delta_seconds_ = 0.1;
}
- virtual ~TouchEmulatorTest() {}
+ ~TouchEmulatorTest() override {}
// testing::Test
- virtual void SetUp() override {
+ void SetUp() override {
#if defined(USE_AURA)
aura::Env::CreateInstance(true);
screen_.reset(aura::TestScreen::Create(gfx::Size()));
@@ -57,7 +57,7 @@ class TouchEmulatorTest : public testing::Test,
emulator_->Enable();
}
- virtual void TearDown() override {
+ void TearDown() override {
emulator_->Disable();
EXPECT_EQ("", ExpectedEvents());

Powered by Google App Engine
This is Rietveld 408576698