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

Unified Diff: ash/wm/video_detector_unittest.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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
« no previous file with comments | « ash/wm/video_detector.h ('k') | ash/wm/virtual_keyboard_container_layout_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/video_detector_unittest.cc
diff --git a/ash/wm/video_detector_unittest.cc b/ash/wm/video_detector_unittest.cc
index f5682e688db12efcc71bdb17eada7d8c094d551f..d2443da66652932c9ff09a9e44d7a1de60b85f64 100644
--- a/ash/wm/video_detector_unittest.cc
+++ b/ash/wm/video_detector_unittest.cc
@@ -40,7 +40,7 @@ class TestVideoDetectorObserver : public VideoDetectorObserver {
}
// VideoDetectorObserver implementation.
- virtual void OnVideoDetected(bool is_fullscreen) OVERRIDE {
+ virtual void OnVideoDetected(bool is_fullscreen) override {
num_invocations_++;
if (is_fullscreen)
num_fullscreens_++;
@@ -66,7 +66,7 @@ class VideoDetectorTest : public AshTestBase {
VideoDetectorTest() {}
virtual ~VideoDetectorTest() {}
- virtual void SetUp() OVERRIDE {
+ virtual void SetUp() override {
AshTestBase::SetUp();
observer_.reset(new TestVideoDetectorObserver);
detector_ = Shell::GetInstance()->video_detector();
@@ -76,7 +76,7 @@ class VideoDetectorTest : public AshTestBase {
detector_->set_now_for_test(now_);
}
- virtual void TearDown() OVERRIDE {
+ virtual void TearDown() override {
detector_->RemoveObserver(observer_.get());
AshTestBase::TearDown();
}
« no previous file with comments | « ash/wm/video_detector.h ('k') | ash/wm/virtual_keyboard_container_layout_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698