Chromium Code Reviews| Index: chrome/browser/ui/autofill/chrome_autofill_client.cc |
| diff --git a/chrome/browser/ui/autofill/chrome_autofill_client.cc b/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| index 37c8c48ec95f0cb0bda949838cf64c5b8f4254a0..52cd2fa027ae6e285357508b4a601a2c9b2f862c 100644 |
| --- a/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| +++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc |
| @@ -186,13 +186,13 @@ void ChromeAutofillClient::ShowAutofillPopup( |
| element_bounds + client_area.OffsetFromOrigin(); |
| // Will delete or reuse the old |popup_controller_|. |
| - popup_controller_ = |
| - AutofillPopupControllerImpl::GetOrCreate(popup_controller_, |
| - delegate, |
| - web_contents(), |
| - web_contents()->GetNativeView(), |
| - element_bounds_in_screen_space, |
| - text_direction); |
| + popup_controller_ = AutofillPopupControllerImpl::GetOrCreate( |
| + popup_controller_, |
| + delegate, |
| + web_contents(), |
| + web_contents()->GetContentNativeView(), |
|
Evan Stade
2015/02/04 21:57:23
I'm not familiar with the differences between GetN
|
| + element_bounds_in_screen_space, |
| + text_direction); |
| popup_controller_->Show(suggestions); |
| } |