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

Unified Diff: chrome/browser/extensions/extension_tab_helper.cc

Issue 10703142: Move WebstoreInstaller, WebstoreInlineInstaller, related in extensions namespace (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest merge with master for cq Created 8 years, 5 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/extension_tab_helper.cc
diff --git a/chrome/browser/extensions/extension_tab_helper.cc b/chrome/browser/extensions/extension_tab_helper.cc
index 563236ad43b8e120bc834681d3a074d1858b4796..b7519268e65216b7c820e36104b0858960d2f412 100644
--- a/chrome/browser/extensions/extension_tab_helper.cc
+++ b/chrome/browser/extensions/extension_tab_helper.cc
@@ -253,13 +253,14 @@ void ExtensionTabHelper::OnInlineWebstoreInstall(
int return_route_id,
const std::string& webstore_item_id,
const GURL& requestor_url) {
- scoped_refptr<WebstoreInlineInstaller> installer(new WebstoreInlineInstaller(
- web_contents(),
- install_id,
- return_route_id,
- webstore_item_id,
- requestor_url,
- this));
+ scoped_refptr<extensions::WebstoreInlineInstaller> installer(
+ new extensions::WebstoreInlineInstaller(
+ web_contents(),
+ install_id,
+ return_route_id,
+ webstore_item_id,
+ requestor_url,
+ this));
installer->BeginInstall();
}
« no previous file with comments | « chrome/browser/extensions/extension_tab_helper.h ('k') | chrome/browser/extensions/webstore_inline_installer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698