| 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 48b32bd64726e6e9675a9c8c018e0fdf6669c3a2..e6ed33b663108860a52eea72c7f610569f5a261f 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
|
| @@ -10,7 +10,7 @@
|
|
|
| namespace extensions {
|
|
|
| -class FileSystemProviderMountFunction : public ChromeAsyncExtensionFunction {
|
| +class FileSystemProviderMountFunction : public ChromeSyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION("fileSystemProvider.mount",
|
| FILESYSTEMPROVIDER_MOUNT)
|
| @@ -20,7 +20,7 @@ class FileSystemProviderMountFunction : public ChromeAsyncExtensionFunction {
|
| virtual bool RunImpl() OVERRIDE;
|
| };
|
|
|
| -class FileSystemProviderUnmountFunction : public ChromeAsyncExtensionFunction {
|
| +class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION("fileSystemProvider.unmount",
|
| FILESYSTEMPROVIDER_UNMOUNT)
|
| @@ -31,7 +31,7 @@ class FileSystemProviderUnmountFunction : public ChromeAsyncExtensionFunction {
|
| };
|
|
|
| class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
| - : public ChromeAsyncExtensionFunction {
|
| + : public ChromeSyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION(
|
| "fileSystemProviderInternal.unmountRequestedSuccess",
|
| @@ -43,7 +43,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
| };
|
|
|
| class FileSystemProviderInternalUnmountRequestedErrorFunction
|
| - : public ChromeAsyncExtensionFunction {
|
| + : public ChromeSyncExtensionFunction {
|
| public:
|
| DECLARE_EXTENSION_FUNCTION("fileSystemProviderInternal.unmountRequestedError",
|
| FILESYSTEMPROVIDERINTERNAL_UNMOUNTREQUESTEDERROR)
|
|
|