| 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();
 | 
|    }
 | 
|  
 | 
| 
 |