| Index: chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
|
| index c0f680cf1d6851bc9e7472b08d82e2401a9d4f15..bde0ba75b7cfeee62c7fcb002c51dd795dcd4ced 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_mount.h
|
| @@ -31,7 +31,7 @@ class FileManagerPrivateAddMountFunction : public LoggedAsyncExtensionFunction {
|
| virtual ~FileManagerPrivateAddMountFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunAsync() OVERRIDE;
|
| + virtual bool RunAsync() override;
|
|
|
| private:
|
| // Part of Run(). Called after GetFile for Drive File System.
|
| @@ -59,7 +59,7 @@ class FileManagerPrivateRemoveMountFunction
|
| virtual ~FileManagerPrivateRemoveMountFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunAsync() OVERRIDE;
|
| + virtual bool RunAsync() override;
|
| };
|
|
|
| // Implements chrome.fileManagerPrivate.getVolumeMetadataList method.
|
| @@ -73,7 +73,7 @@ class FileManagerPrivateGetVolumeMetadataListFunction
|
| virtual ~FileManagerPrivateGetVolumeMetadataListFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunAsync() OVERRIDE;
|
| + virtual bool RunAsync() override;
|
| };
|
|
|
| } // namespace extensions
|
|
|