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

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_install_dialog_controller.mm

Issue 11647017: Rename platform-independent ConstrainedWindow types to WebContentsModalDialog types (part 1) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: stage changes to preserve history Created 8 years 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/ui/cocoa/extensions/extension_install_dialog_controller.mm
diff --git a/chrome/browser/ui/cocoa/extensions/extension_install_dialog_controller.mm b/chrome/browser/ui/cocoa/extensions/extension_install_dialog_controller.mm
index 99bef89000c9e9ee0998186a3a6773d2e79dc303..df1839331c5731e878b081de2b460f8b3c556dcb 100644
--- a/chrome/browser/ui/cocoa/extensions/extension_install_dialog_controller.mm
+++ b/chrome/browser/ui/cocoa/extensions/extension_install_dialog_controller.mm
@@ -54,13 +54,13 @@ ExtensionInstallDialogController::~ExtensionInstallDialogController() {
void ExtensionInstallDialogController::InstallUIProceed() {
delegate_->InstallUIProceed();
delegate_ = NULL;
- constrained_window_->CloseConstrainedWindow();
+ constrained_window_->CloseWebContentsModalDialog();
}
void ExtensionInstallDialogController::InstallUIAbort(bool user_initiated) {
delegate_->InstallUIAbort(user_initiated);
delegate_ = NULL;
- constrained_window_->CloseConstrainedWindow();
+ constrained_window_->CloseWebContentsModalDialog();
}
void ExtensionInstallDialogController::OnConstrainedWindowClosed(

Powered by Google App Engine
This is Rietveld 408576698