| Index: chrome/browser/autofill/autofill_popup_view.cc
|
| diff --git a/chrome/browser/autofill/autofill_popup_view.cc b/chrome/browser/autofill/autofill_popup_view.cc
|
| index 9a2ea7980337a869ca7e5615adc9f187313f1ef7..bd285536c4892a7319660ee230d81e875f2358c6 100644
|
| --- a/chrome/browser/autofill/autofill_popup_view.cc
|
| +++ b/chrome/browser/autofill/autofill_popup_view.cc
|
| @@ -23,6 +23,21 @@ AutofillPopupView::AutofillPopupView(content::WebContents* web_contents) {
|
|
|
| AutofillPopupView::~AutofillPopupView() {}
|
|
|
| +void AutofillPopupView::Show(const std::vector<string16>& autofill_values,
|
| + const std::vector<string16>& autofill_labels,
|
| + const std::vector<string16>& autofill_icons,
|
| + const std::vector<int>& autofill_unique_ids,
|
| + int separator_index) {
|
| + autofill_values_ = autofill_values;
|
| + autofill_labels_ = autofill_labels;
|
| + autofill_icons_ = autofill_icons;
|
| + autofill_unique_ids_ = autofill_unique_ids;
|
| +
|
| + separator_index_ = separator_index;
|
| +
|
| + ShowInternal();
|
| +}
|
| +
|
| void AutofillPopupView::Observe(int type,
|
| const content::NotificationSource& source,
|
| const content::NotificationDetails& details) {
|
|
|