| 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..d5c945d99f2b1e3b5c4099471abeb2d91a2f5076 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 RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
|
| @@ -27,7 +27,7 @@ class FileSystemProviderUnmountFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemProviderUnmountFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
| @@ -39,7 +39,7 @@ class FileSystemProviderInternalUnmountRequestedSuccessFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalUnmountRequestedSuccessFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemProviderInternalUnmountRequestedErrorFunction
|
| @@ -50,7 +50,7 @@ class FileSystemProviderInternalUnmountRequestedErrorFunction
|
|
|
| protected:
|
| virtual ~FileSystemProviderInternalUnmountRequestedErrorFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|