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

Unified Diff: chrome/browser/sync_file_system/sync_process_runner.cc

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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: chrome/browser/sync_file_system/sync_process_runner.cc
diff --git a/chrome/browser/sync_file_system/sync_process_runner.cc b/chrome/browser/sync_file_system/sync_process_runner.cc
index a6320c744563cab94791021c89e4cc0658c3b225..fa1f100038b656e6af3b89668a3a43f4133d1974 100644
--- a/chrome/browser/sync_file_system/sync_process_runner.cc
+++ b/chrome/browser/sync_file_system/sync_process_runner.cc
@@ -26,17 +26,17 @@ class BaseTimerHelper : public SyncProcessRunner::TimerHelper {
public:
BaseTimerHelper() {}
- virtual bool IsRunning() OVERRIDE {
+ virtual bool IsRunning() override {
return timer_.IsRunning();
}
virtual void Start(const tracked_objects::Location& from_here,
const base::TimeDelta& delay,
- const base::Closure& closure) OVERRIDE {
+ const base::Closure& closure) override {
timer_.Start(from_here, delay, closure);
}
- virtual base::TimeTicks Now() const OVERRIDE {
+ virtual base::TimeTicks Now() const override {
return base::TimeTicks::Now();
}

Powered by Google App Engine
This is Rietveld 408576698