| Index: chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
|
| index 3085ecc6b86e62ac78760f222a0edaf9b796c2e4..c2df097c9199e96988ee66762e91a46f11479870 100644
|
| --- a/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
|
| +++ b/chrome/browser/chromeos/extensions/file_system_provider/file_system_provider_api.h
|
| @@ -17,7 +17,7 @@ class FileSystemProviderMountFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemProviderMountFunction() {}
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
|
| @@ -27,7 +27,7 @@ class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemProviderUnmountFunction() {}
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| class FileSystemProviderGetAllFunction : public ChromeSyncExtensionFunction {
|
| @@ -37,7 +37,7 @@ class FileSystemProviderGetAllFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemProviderGetAllFunction() {}
|
| - virtual bool RunSync() OVERRIDE;
|
| + virtual bool RunSync() override;
|
| };
|
|
|
| class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
| @@ -49,7 +49,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalUnmountRequestedSuccessFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
|
| @@ -61,7 +61,7 @@ class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
|
| @@ -73,7 +73,7 @@ class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalReadDirectoryRequestedSuccessFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| class FileSystemProviderInternalReadFileRequestedSuccessFunction
|
| @@ -85,7 +85,7 @@ class FileSystemProviderInternalReadFileRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalReadFileRequestedSuccessFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| class FileSystemProviderInternalOperationRequestedSuccessFunction
|
| @@ -97,7 +97,7 @@ class FileSystemProviderInternalOperationRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalOperationRequestedSuccessFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| class FileSystemProviderInternalOperationRequestedErrorFunction
|
| @@ -109,7 +109,7 @@ class FileSystemProviderInternalOperationRequestedErrorFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalOperationRequestedErrorFunction() {}
|
| - virtual bool RunWhenValid() OVERRIDE;
|
| + virtual bool RunWhenValid() override;
|
| };
|
|
|
| } // namespace extensions
|
|
|