Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / api / file_system / file_system_api.h
index a8ff513..7aee4e5 100644 (file)
@@ -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 RunAsync() 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 RunAsync() 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 RunAsync() 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 RunAsync() OVERRIDE;
 };
 
 }  // namespace extensions