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 41f2aaac04d8301b7b0c872a2656b25f2ec994c2..a6105f56f6f24c40622370343427dcc3d5cee9f3 100644 |
--- a/chrome/browser/ui/autofill/chrome_autofill_client.cc |
+++ b/chrome/browser/ui/autofill/chrome_autofill_client.cc |
@@ -138,6 +138,7 @@ void ChromeAutofillClient::ShowAutofillPopup( |
const std::vector<base::string16>& labels, |
const std::vector<base::string16>& icons, |
const std::vector<int>& identifiers, |
+ const base::string16& title, |
base::WeakPtr<AutofillPopupDelegate> delegate) { |
// Convert element_bounds to be in screen space. |
gfx::Rect client_area = web_contents_->GetContainerBounds(); |
@@ -153,7 +154,7 @@ void ChromeAutofillClient::ShowAutofillPopup( |
element_bounds_in_screen_space, |
text_direction); |
- popup_controller_->Show(values, labels, icons, identifiers); |
+ popup_controller_->Show(values, labels, icons, identifiers, title); |
} |
void ChromeAutofillClient::UpdateAutofillPopupDataListValues( |