| Index: chrome/browser/ui/intents/web_intent_picker_controller.cc
|
| diff --git a/chrome/browser/ui/intents/web_intent_picker_controller.cc b/chrome/browser/ui/intents/web_intent_picker_controller.cc
|
| index b689077b76b94920e76cb568b167500a6174eb87..c341c1b3ccfa2ba6ec2282683c6c1fb57ef93ca0 100644
|
| --- a/chrome/browser/ui/intents/web_intent_picker_controller.cc
|
| +++ b/chrome/browser/ui/intents/web_intent_picker_controller.cc
|
| @@ -241,7 +241,7 @@ void WebIntentPickerController::ShowDialog(DefaultsUsage suppress_defaults) {
|
| // on the original tab.
|
| ConstrainedWindowTabHelper* constrained_window_tab_helper =
|
| ConstrainedWindowTabHelper::FromWebContents(web_contents_);
|
| - constrained_window_tab_helper->BlockTabContent(true);
|
| + constrained_window_tab_helper->BlockWebContentsInteraction(true);
|
| SetDialogState(kPickerSetup);
|
|
|
| pending_async_count_++;
|
| @@ -705,7 +705,7 @@ void WebIntentPickerController::Reset() {
|
| DCHECK(web_contents_);
|
| ConstrainedWindowTabHelper* constrained_window_tab_helper =
|
| ConstrainedWindowTabHelper::FromWebContents(web_contents_);
|
| - constrained_window_tab_helper->BlockTabContent(false);
|
| + constrained_window_tab_helper->BlockWebContentsInteraction(false);
|
| }
|
|
|
| void WebIntentPickerController::OnShowExtensionInstallDialog(
|
|
|