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

Unified Diff: ash/system/chromeos/session/logout_confirmation_controller_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
Index: ash/system/chromeos/session/logout_confirmation_controller_unittest.cc
diff --git a/ash/system/chromeos/session/logout_confirmation_controller_unittest.cc b/ash/system/chromeos/session/logout_confirmation_controller_unittest.cc
index cefb1282fe988c2312148600b71aef5c93dad8ec..fb9d3791ad18af6c10bd660e3e6937111be144b9 100644
--- a/ash/system/chromeos/session/logout_confirmation_controller_unittest.cc
+++ b/ash/system/chromeos/session/logout_confirmation_controller_unittest.cc
@@ -29,14 +29,14 @@ class MockTimeSingleThreadTaskRunner : public base::SingleThreadTaskRunner {
MockTimeSingleThreadTaskRunner();
// base::SingleThreadTaskRunner:
- virtual bool RunsTasksOnCurrentThread() const OVERRIDE;
+ virtual bool RunsTasksOnCurrentThread() const override;
virtual bool PostDelayedTask(const tracked_objects::Location& from_here,
const base::Closure& task,
- base::TimeDelta delay) OVERRIDE;
+ base::TimeDelta delay) override;
virtual bool PostNonNestableDelayedTask(
const tracked_objects::Location& from_here,
const base::Closure& task,
- base::TimeDelta delay) OVERRIDE;
+ base::TimeDelta delay) override;
const base::TimeTicks& GetCurrentTime() const;
@@ -70,7 +70,7 @@ class MockClock : public base::TickClock {
virtual ~MockClock();
// base::TickClock:
- virtual base::TimeTicks NowTicks() OVERRIDE;
+ virtual base::TimeTicks NowTicks() override;
private:
scoped_refptr<MockTimeSingleThreadTaskRunner> task_runner_;
« no previous file with comments | « ash/system/chromeos/session/logout_confirmation_controller.h ('k') | ash/system/chromeos/session/logout_confirmation_dialog.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698