| Index: chrome/browser/extensions/api/file_system/file_system_api.h
|
| diff --git a/chrome/browser/extensions/api/file_system/file_system_api.h b/chrome/browser/extensions/api/file_system/file_system_api.h
|
| index a8ff51366b5213740c286baa256ad2ed391cdbc1..2f126edbe35327b78f828dc8b1d6219313a13788 100644
|
| --- a/chrome/browser/extensions/api/file_system/file_system_api.h
|
| +++ b/chrome/browser/extensions/api/file_system/file_system_api.h
|
| @@ -40,7 +40,7 @@ class FileSystemGetDisplayPathFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemGetDisplayPathFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemEntryFunction : public ChromeAsyncExtensionFunction {
|
| @@ -88,7 +88,7 @@ class FileSystemGetWritableEntryFunction : public FileSystemEntryFunction {
|
|
|
| protected:
|
| virtual ~FileSystemGetWritableEntryFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void CheckPermissionAndSendResponse();
|
| @@ -105,7 +105,7 @@ class FileSystemIsWritableEntryFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemIsWritableEntryFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemChooseEntryFunction : public FileSystemEntryFunction {
|
| @@ -145,7 +145,7 @@ class FileSystemChooseEntryFunction : public FileSystemEntryFunction {
|
| class FilePicker;
|
|
|
| virtual ~FileSystemChooseEntryFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| void ShowPicker(const ui::SelectFileDialog::FileTypeInfo& file_type_info,
|
| ui::SelectFileDialog::Type picker_type);
|
|
|
| @@ -176,7 +176,7 @@ class FileSystemRetainEntryFunction : public ChromeAsyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemRetainEntryFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| // Retains the file entry referenced by |entry_id| in apps::SavedFilesService.
|
| @@ -198,7 +198,7 @@ class FileSystemIsRestorableFunction : public ChromeSyncExtensionFunction {
|
|
|
| protected:
|
| virtual ~FileSystemIsRestorableFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileSystemRestoreEntryFunction : public FileSystemEntryFunction {
|
| @@ -207,7 +207,7 @@ class FileSystemRestoreEntryFunction : public FileSystemEntryFunction {
|
|
|
| protected:
|
| virtual ~FileSystemRestoreEntryFunction() {}
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|