| Index: chrome/browser/chromeos/file_system_provider/operations/abort.h
 | 
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/abort.h b/chrome/browser/chromeos/file_system_provider/operations/abort.h
 | 
| index 79f62c84700456503c9c3bd830072a5a03a58879..13a024b744c61dcb5d3709f5ec4b5b596237294b 100644
 | 
| --- a/chrome/browser/chromeos/file_system_provider/operations/abort.h
 | 
| +++ b/chrome/browser/chromeos/file_system_provider/operations/abort.h
 | 
| @@ -35,13 +35,13 @@ class Abort : public Operation {
 | 
|    virtual ~Abort();
 | 
|  
 | 
|    // Operation overrides.
 | 
| -  virtual bool Execute(int request_id) OVERRIDE;
 | 
| +  virtual bool Execute(int request_id) override;
 | 
|    virtual void OnSuccess(int request_id,
 | 
|                           scoped_ptr<RequestValue> result,
 | 
| -                         bool has_more) OVERRIDE;
 | 
| +                         bool has_more) override;
 | 
|    virtual void OnError(int request_id,
 | 
|                         scoped_ptr<RequestValue> result,
 | 
| -                       base::File::Error error) OVERRIDE;
 | 
| +                       base::File::Error error) override;
 | 
|  
 | 
|   private:
 | 
|    int operation_request_id_;
 | 
| 
 |