Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7518)

Unified Diff: chrome/browser/ui/autofill/chrome_autofill_client.cc

Issue 492043003: Fill on account select in the password manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase on ToT Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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(

Powered by Google App Engine
This is Rietveld 408576698