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

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

Issue 634313004: Display dialog when app install succeeds / fails on Athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_install_prompt.cc
diff --git a/chrome/browser/extensions/extension_install_prompt.cc b/chrome/browser/extensions/extension_install_prompt.cc
index 0af21940338ff4a6ee58dd25248b0c960ba20dba..2d90890d6b1d5040606e8bbd69dcb2045d4b0b45 100644
--- a/chrome/browser/extensions/extension_install_prompt.cc
+++ b/chrome/browser/extensions/extension_install_prompt.cc
@@ -661,7 +661,8 @@ ExtensionInstallPrompt::ExtensionInstallPrompt(content::WebContents* contents)
: ui_loop_(base::MessageLoop::current()),
extension_(NULL),
bundle_(NULL),
- install_ui_(ExtensionInstallUI::Create(ProfileForWebContents(contents))),
+ install_ui_(
+ chrome::CreateExtensionInstallUI(ProfileForWebContents(contents))),
show_params_(contents),
delegate_(NULL) {
}
@@ -673,7 +674,7 @@ ExtensionInstallPrompt::ExtensionInstallPrompt(
: ui_loop_(base::MessageLoop::current()),
extension_(NULL),
bundle_(NULL),
- install_ui_(ExtensionInstallUI::Create(profile)),
+ install_ui_(chrome::CreateExtensionInstallUI(profile)),
show_params_(native_window, navigator),
delegate_(NULL) {
}

Powered by Google App Engine
This is Rietveld 408576698