| Index: chrome/browser/chromeos/file_system_provider/operations/operation.h
|
| diff --git a/chrome/browser/chromeos/file_system_provider/operations/operation.h b/chrome/browser/chromeos/file_system_provider/operations/operation.h
|
| index 205b9d4ff565d41437c95a565c2b4335a128d348..fa5f2dda49dfea8dd8166a873a7c5a91383b8f04 100644
|
| --- a/chrome/browser/chromeos/file_system_provider/operations/operation.h
|
| +++ b/chrome/browser/chromeos/file_system_provider/operations/operation.h
|
| @@ -37,13 +37,13 @@ class Operation : public RequestManager::HandlerInterface {
|
| virtual ~Operation();
|
|
|
| // RequestManager::HandlerInterface overrides.
|
| - virtual bool Execute(int request_id) OVERRIDE = 0;
|
| + virtual bool Execute(int request_id) override = 0;
|
| virtual void OnSuccess(int request_id,
|
| scoped_ptr<RequestValue> result,
|
| - bool has_more) OVERRIDE = 0;
|
| + bool has_more) override = 0;
|
| virtual void OnError(int request_id,
|
| scoped_ptr<RequestValue> result,
|
| - base::File::Error error) OVERRIDE = 0;
|
| + base::File::Error error) override = 0;
|
|
|
| // Sets custom dispatchign event implementation for tests.
|
| void SetDispatchEventImplForTesting(
|
|
|