| Index: chrome/browser/extensions/api/management/management_api.h
|
| diff --git a/chrome/browser/extensions/api/management/management_api.h b/chrome/browser/extensions/api/management/management_api.h
|
| index af46ef9fc980f256e01c9215ac46c46698c2641a..3c348c9caff33475b74e728baf899e0b6b8caaef 100644
|
| --- a/chrome/browser/extensions/api/management/management_api.h
|
| +++ b/chrome/browser/extensions/api/management/management_api.h
|
| @@ -83,7 +83,7 @@ class ManagementGetPermissionWarningsByManifestFunction
|
| virtual ~ManagementGetPermissionWarningsByManifestFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class ManagementLaunchAppFunction : public ManagementFunction {
|
| @@ -108,7 +108,7 @@ class ManagementSetEnabledFunction : public AsyncManagementFunction,
|
| virtual ~ManagementSetEnabledFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // ExtensionInstallPrompt::Delegate.
|
| virtual void InstallUIProceed() OVERRIDE;
|
| @@ -140,7 +140,7 @@ class ManagementUninstallFunctionBase : public AsyncManagementFunction,
|
|
|
| // If should_uninstall is true, this method does the actual uninstall.
|
| // If |show_uninstall_dialog|, then this function will be called by one of the
|
| - // Accepted/Canceled callbacks. Otherwise, it's called directly from RunImpl.
|
| + // Accepted/Canceled callbacks. Otherwise, it's called directly from RunAsync.
|
| void Finish(bool should_uninstall);
|
|
|
| std::string extension_id_;
|
| @@ -156,7 +156,7 @@ class ManagementUninstallFunction : public ManagementUninstallFunctionBase {
|
| private:
|
| virtual ~ManagementUninstallFunction();
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class ManagementUninstallSelfFunction : public ManagementUninstallFunctionBase {
|
| @@ -169,7 +169,7 @@ class ManagementUninstallSelfFunction : public ManagementUninstallFunctionBase {
|
| private:
|
| virtual ~ManagementUninstallSelfFunction();
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class ManagementCreateAppShortcutFunction : public AsyncManagementFunction {
|
| @@ -186,7 +186,7 @@ class ManagementCreateAppShortcutFunction : public AsyncManagementFunction {
|
| protected:
|
| virtual ~ManagementCreateAppShortcutFunction();
|
|
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
| };
|
|
|
| class ManagementEventRouter : public content::NotificationObserver {
|
|
|