| Index: chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| diff --git a/chrome/browser/extensions/api/webstore_private/webstore_private_api.h b/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| index b9b748cc4efe3e2184f5db15bd7136b4f2c27594..c56f7692d3e3ace6ba46c8e139490b2cb3c01c81 100644
|
| --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| @@ -61,7 +61,7 @@ class WebstorePrivateInstallBundleFunction
|
| virtual ~WebstorePrivateInstallBundleFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Reads the extension |details| into |items|.
|
| bool ReadBundleInfo(
|
| @@ -135,7 +135,7 @@ class WebstorePrivateBeginInstallWithManifest3Function
|
| virtual ~WebstorePrivateBeginInstallWithManifest3Function();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| // Sets the result_ as a string based on |code|.
|
| void SetResultCode(ResultCode code);
|
| @@ -189,7 +189,7 @@ class WebstorePrivateCompleteInstallFunction
|
| virtual ~WebstorePrivateCompleteInstallFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| scoped_ptr<WebstoreInstaller::Approval> approval_;
|
| @@ -207,7 +207,7 @@ class WebstorePrivateEnableAppLauncherFunction
|
| virtual ~WebstorePrivateEnableAppLauncherFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class WebstorePrivateGetBrowserLoginFunction
|
| @@ -220,7 +220,7 @@ class WebstorePrivateGetBrowserLoginFunction
|
| virtual ~WebstorePrivateGetBrowserLoginFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class WebstorePrivateGetStoreLoginFunction
|
| @@ -233,7 +233,7 @@ class WebstorePrivateGetStoreLoginFunction
|
| virtual ~WebstorePrivateGetStoreLoginFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class WebstorePrivateSetStoreLoginFunction
|
| @@ -246,7 +246,7 @@ class WebstorePrivateSetStoreLoginFunction
|
| virtual ~WebstorePrivateSetStoreLoginFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| class WebstorePrivateGetWebGLStatusFunction
|
| @@ -263,7 +263,7 @@ class WebstorePrivateGetWebGLStatusFunction
|
| void OnFeatureCheck(bool feature_allowed);
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void CreateResult(bool webgl_allowed);
|
| @@ -283,7 +283,7 @@ class WebstorePrivateGetIsLauncherEnabledFunction
|
| virtual ~WebstorePrivateGetIsLauncherEnabledFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
|
|
| private:
|
| void OnIsLauncherCheckCompleted(bool is_enabled);
|
| @@ -301,7 +301,7 @@ class WebstorePrivateIsInIncognitoModeFunction
|
| virtual ~WebstorePrivateIsInIncognitoModeFunction() {}
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunSync() OVERRIDE;
|
| };
|
|
|
| } // namespace extensions
|
|
|