| Index: chrome/browser/extensions/tab_helper.h
|
| diff --git a/chrome/browser/extensions/tab_helper.h b/chrome/browser/extensions/tab_helper.h
|
| index cad235ee095fac477542369794527e8591245d05..05399f1e728fbc98b7188b56669b2d1a87c0cb70 100644
|
| --- a/chrome/browser/extensions/tab_helper.h
|
| +++ b/chrome/browser/extensions/tab_helper.h
|
| @@ -37,7 +37,6 @@ class ScriptExecutor;
|
| class TabHelper : public content::WebContentsObserver,
|
| public ExtensionFunctionDispatcher::Delegate,
|
| public ImageLoadingTracker::Observer,
|
| - public WebstoreInlineInstaller::Delegate,
|
| public AppNotifyChannelSetup::Delegate,
|
| public base::SupportsWeakPtr<TabHelper>,
|
| public content::NotificationObserver,
|
| @@ -161,12 +160,11 @@ class TabHelper : public content::WebContentsObserver,
|
| const std::string& extension_id,
|
| int index) OVERRIDE;
|
|
|
| - // WebstoreInlineInstaller::Delegate.
|
| - virtual void OnInlineInstallSuccess(int install_id,
|
| - int return_route_id) OVERRIDE;
|
| - virtual void OnInlineInstallFailure(int install_id,
|
| - int return_route_id,
|
| - const std::string& error) OVERRIDE;
|
| + // WebstoreInlineInstaller::Callback.
|
| + virtual void OnInlineInstallComplete(int install_id,
|
| + int return_route_id,
|
| + bool success,
|
| + const std::string& error);
|
|
|
| // AppNotifyChannelSetup::Delegate.
|
| virtual void AppNotifyChannelSetupComplete(
|
|
|