| Index: chrome/browser/sync_file_system/local/local_file_change_tracker.h
 | 
| diff --git a/chrome/browser/sync_file_system/local/local_file_change_tracker.h b/chrome/browser/sync_file_system/local/local_file_change_tracker.h
 | 
| index 1698ea2fcea1f759ecb2713cec58f412f83cd13f..daf22350e4067692381632a08bcc94d703a9a7b7 100644
 | 
| --- a/chrome/browser/sync_file_system/local/local_file_change_tracker.h
 | 
| +++ b/chrome/browser/sync_file_system/local/local_file_change_tracker.h
 | 
| @@ -51,19 +51,19 @@ class LocalFileChangeTracker : public storage::FileUpdateObserver,
 | 
|    virtual ~LocalFileChangeTracker();
 | 
|  
 | 
|    // FileUpdateObserver overrides.
 | 
| -  virtual void OnStartUpdate(const storage::FileSystemURL& url) OVERRIDE;
 | 
| +  virtual void OnStartUpdate(const storage::FileSystemURL& url) override;
 | 
|    virtual void OnUpdate(const storage::FileSystemURL& url,
 | 
| -                        int64 delta) OVERRIDE {}
 | 
| -  virtual void OnEndUpdate(const storage::FileSystemURL& url) OVERRIDE;
 | 
| +                        int64 delta) override {}
 | 
| +  virtual void OnEndUpdate(const storage::FileSystemURL& url) override;
 | 
|  
 | 
|    // FileChangeObserver overrides.
 | 
| -  virtual void OnCreateFile(const storage::FileSystemURL& url) OVERRIDE;
 | 
| +  virtual void OnCreateFile(const storage::FileSystemURL& url) override;
 | 
|    virtual void OnCreateFileFrom(const storage::FileSystemURL& url,
 | 
| -                                const storage::FileSystemURL& src) OVERRIDE;
 | 
| -  virtual void OnRemoveFile(const storage::FileSystemURL& url) OVERRIDE;
 | 
| -  virtual void OnModifyFile(const storage::FileSystemURL& url) OVERRIDE;
 | 
| -  virtual void OnCreateDirectory(const storage::FileSystemURL& url) OVERRIDE;
 | 
| -  virtual void OnRemoveDirectory(const storage::FileSystemURL& url) OVERRIDE;
 | 
| +                                const storage::FileSystemURL& src) override;
 | 
| +  virtual void OnRemoveFile(const storage::FileSystemURL& url) override;
 | 
| +  virtual void OnModifyFile(const storage::FileSystemURL& url) override;
 | 
| +  virtual void OnCreateDirectory(const storage::FileSystemURL& url) override;
 | 
| +  virtual void OnRemoveDirectory(const storage::FileSystemURL& url) override;
 | 
|  
 | 
|    // Retrieves an array of |url| which have more than one pending changes.
 | 
|    // If |max_urls| is non-zero (recommended in production code) this
 | 
| 
 |