| 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 e6ed33b663108860a52eea72c7f610569f5a261f..e378947c89b636d14a0ec1356d342091e5ac13fc 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
|
| @@ -53,6 +53,30 @@ class FileSystemProviderInternalUnmountRequestedErrorFunction
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| +class FileSystemProviderInternalGetMetadataRequestedSuccessFunction
|
| + : public ChromeSyncExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION(
|
| + "fileSystemProviderInternal.getMetadataRequestedSuccess",
|
| + FILESYSTEMPROVIDERINTERNAL_GETMETADATAREQUESTEDSUCCESS)
|
| +
|
| + protected:
|
| + virtual ~FileSystemProviderInternalGetMetadataRequestedSuccessFunction() {}
|
| + virtual bool RunImpl() OVERRIDE;
|
| +};
|
| +
|
| +class FileSystemProviderInternalGetMetadataRequestedErrorFunction
|
| + : public ChromeSyncExtensionFunction {
|
| + public:
|
| + DECLARE_EXTENSION_FUNCTION(
|
| + "fileSystemProviderInternal.getMetadataRequestedError",
|
| + FILESYSTEMPROVIDERINTERNAL_GETMETADATAREQUESTEDERROR)
|
| +
|
| + protected:
|
| + virtual ~FileSystemProviderInternalGetMetadataRequestedErrorFunction() {}
|
| + virtual bool RunImpl() OVERRIDE;
|
| +};
|
| +
|
| } // namespace extensions
|
|
|
| #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_SYSTEM_PROVIDER_FILE_SYSTEM_PROVIDER_API_H_
|
|
|