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

Unified Diff: components/autofill/content/renderer/password_autofill_agent.h

Issue 2187253002: [Password Manager] Change signature of PasswordAutofillAgent.FillSuggestion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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: components/autofill/content/renderer/password_autofill_agent.h
diff --git a/components/autofill/content/renderer/password_autofill_agent.h b/components/autofill/content/renderer/password_autofill_agent.h
index b0da2dedd23a482c3ab393dff449d35447f98467..90b48fd11a5b596f9f69875b1e887ab03f8a3ddd 100644
--- a/components/autofill/content/renderer/password_autofill_agent.h
+++ b/components/autofill/content/renderer/password_autofill_agent.h
@@ -53,9 +53,9 @@ class PasswordAutofillAgent : public content::RenderFrameObserver {
// Fills the username and password fields of this form with the given values.
// Returns true if the fields were filled, false otherwise.
- bool FillSuggestion(const blink::WebFormControlElement& node,
- const blink::WebString& username,
- const blink::WebString& password);
+ bool FillSuggestion(const blink::WebFormControlElement& control_element,
+ const base::string16& username,
+ const base::string16& password);
// Previews the username and password fields of this form with the given
// values. Returns true if the fields were previewed, false otherwise.

Powered by Google App Engine
This is Rietveld 408576698