| Index: chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| index 583e143ebb583a848f57fa1be97af500b607f161..85b55d7b1dca59b57901b84953b6e73fe46ece02 100644
|
| --- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| +++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h
|
| @@ -30,7 +30,7 @@ class FileBrowserPrivateLogoutUserForReauthenticationFunction
|
| virtual ~FileBrowserPrivateLogoutUserForReauthenticationFunction() {}
|
|
|
| // SyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // Implements the chrome.fileBrowserPrivate.getPreferences method.
|
| @@ -44,7 +44,7 @@ class FileBrowserPrivateGetPreferencesFunction
|
| protected:
|
| virtual ~FileBrowserPrivateGetPreferencesFunction() {}
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // Implements the chrome.fileBrowserPrivate.setPreferences method.
|
| @@ -58,7 +58,7 @@ class FileBrowserPrivateSetPreferencesFunction
|
| protected:
|
| virtual ~FileBrowserPrivateSetPreferencesFunction() {}
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // Implements the chrome.fileBrowserPrivate.zipSelection method.
|
| @@ -98,7 +98,7 @@ class FileBrowserPrivateZoomFunction : public ChromeSyncExtensionFunction {
|
| virtual ~FileBrowserPrivateZoomFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| // Implements the chrome.fileBrowserPrivate.installWebstoreItem method.
|
| @@ -149,7 +149,7 @@ class FileBrowserPrivateGetProfilesFunction
|
| virtual ~FileBrowserPrivateGetProfilesFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class FileBrowserPrivateVisitDesktopFunction
|
| @@ -162,7 +162,7 @@ class FileBrowserPrivateVisitDesktopFunction
|
| virtual ~FileBrowserPrivateVisitDesktopFunction() {}
|
|
|
| // AsyncExtensionFunction overrides.
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|