| 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 0ec3e0352ac31037ce48c3f91e20b2c8c872d43a..e5aab5e2b1945df33bef34ca69d7b48dd9c96ca8 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
|
| @@ -72,7 +72,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalUnmountRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
|
| @@ -84,7 +84,7 @@ class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalGetActionsRequestedSuccessFunction
|
| @@ -96,7 +96,7 @@ class FileSystemProviderInternalGetActionsRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalGetActionsRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
|
| @@ -108,7 +108,7 @@ class FileSystemProviderInternalReadDirectoryRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalReadDirectoryRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalReadFileRequestedSuccessFunction
|
| @@ -120,7 +120,7 @@ class FileSystemProviderInternalReadFileRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalReadFileRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalOperationRequestedSuccessFunction
|
| @@ -132,7 +132,7 @@ class FileSystemProviderInternalOperationRequestedSuccessFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalOperationRequestedSuccessFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| class FileSystemProviderInternalOperationRequestedErrorFunction
|
| @@ -144,7 +144,7 @@ class FileSystemProviderInternalOperationRequestedErrorFunction
|
|
|
| protected:
|
| ~FileSystemProviderInternalOperationRequestedErrorFunction() override {}
|
| - bool RunWhenValid() override;
|
| + ResponseAction Run() override;
|
| };
|
|
|
| } // namespace extensions
|
|
|