Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2051)

Unified Diff: chrome/browser/extensions/tab_helper.h

Issue 10907104: Support an --install-from-webstore command line switch (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: updated comment Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/tab_helper.h
diff --git a/chrome/browser/extensions/tab_helper.h b/chrome/browser/extensions/tab_helper.h
index 170312289213b02951094566123c88406a484ac8..99373e23a56e64604320f5b2cfbbe6ffbe811ff0 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 {
@@ -163,12 +162,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(

Powered by Google App Engine
This is Rietveld 408576698