| 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 6c6cd452f65981d55c4bbf5edcbad50f8b1c15d6..d733319404be1cdf4ea0891eb286e6d67f9d9494 100644
|
| --- a/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| +++ b/chrome/browser/extensions/api/webstore_private/webstore_private_api.h
|
| @@ -63,7 +63,7 @@ class WebstorePrivateInstallBundleFunction
|
| virtual ~WebstorePrivateInstallBundleFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // Reads the extension |details| into |items|.
|
| bool ReadBundleInfo(
|
| @@ -137,7 +137,7 @@ class WebstorePrivateBeginInstallWithManifest3Function
|
| virtual ~WebstorePrivateBeginInstallWithManifest3Function();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // Sets the result_ as a string based on |code|.
|
| void SetResultCode(ResultCode code);
|
| @@ -191,7 +191,7 @@ class WebstorePrivateCompleteInstallFunction
|
| virtual ~WebstorePrivateCompleteInstallFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| scoped_ptr<WebstoreInstaller::Approval> approval_;
|
| @@ -265,7 +265,7 @@ class WebstorePrivateGetWebGLStatusFunction
|
| void OnFeatureCheck(bool feature_allowed);
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| private:
|
| void CreateResult(bool webgl_allowed);
|
| @@ -319,7 +319,7 @@ class WebstorePrivateSignInFunction : public ChromeAsyncExtensionFunction,
|
| virtual ~WebstorePrivateSignInFunction();
|
|
|
| // ExtensionFunction:
|
| - virtual bool RunImpl() OVERRIDE;
|
| + virtual bool RunAsync() OVERRIDE;
|
|
|
| // SigninManagerFactory::Observer:
|
| virtual void SigninManagerShutdown(SigninManagerBase* manager) OVERRIDE;
|
|
|