| 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 dc555e4405f43650905dd09499c7a88a46c6fbcb..614143dc7c6f58393ff2a59a6d8f07318193b58c 100644
|
| --- a/chrome/browser/ui/autofill/chrome_autofill_client.cc
|
| +++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc
|
| @@ -143,10 +143,7 @@ void ChromeAutofillClient::ShowRequestAutocompleteDialog(
|
| void ChromeAutofillClient::ShowAutofillPopup(
|
| const gfx::RectF& element_bounds,
|
| base::i18n::TextDirection text_direction,
|
| - const std::vector<base::string16>& values,
|
| - const std::vector<base::string16>& labels,
|
| - const std::vector<base::string16>& icons,
|
| - const std::vector<int>& identifiers,
|
| + const std::vector<autofill::Suggestion>& suggestions,
|
| base::WeakPtr<AutofillPopupDelegate> delegate) {
|
| // Convert element_bounds to be in screen space.
|
| gfx::Rect client_area = web_contents_->GetContainerBounds();
|
| @@ -162,7 +159,7 @@ void ChromeAutofillClient::ShowAutofillPopup(
|
| element_bounds_in_screen_space,
|
| text_direction);
|
|
|
| - popup_controller_->Show(values, labels, icons, identifiers);
|
| + popup_controller_->Show(suggestions);
|
| }
|
|
|
| void ChromeAutofillClient::UpdateAutofillPopupDataListValues(
|
|
|