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

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

Issue 225823006: Rewrite functions from WebPasswordFormData and WebPasswordFormUtils in (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put check on "isActivatedSumbit" back Created 6 years, 8 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_form_conversion_utils.h
diff --git a/components/autofill/content/renderer/password_form_conversion_utils.h b/components/autofill/content/renderer/password_form_conversion_utils.h
index 9f017253d1b1ac32a546edd941c642e56b50e478..9e99a4852ed540d501f9ca1c13de0f3c19f65beb 100644
--- a/components/autofill/content/renderer/password_form_conversion_utils.h
+++ b/components/autofill/content/renderer/password_form_conversion_utils.h
@@ -15,6 +15,11 @@ namespace autofill {
struct PasswordForm;
+// Get information about a login form that encapsulated in the
+// PasswordForm struct.
Garrett Casto 2014/04/16 22:56:55 I don't think that we want to make this public now
+void GetPasswordForm(const blink::WebFormElement& form,
+ PasswordForm* password_form);
+
// Create a PasswordForm from DOM form. Webkit doesn't allow storing
// custom metadata to DOM nodes, so we have to do this every time an event
// happens with a given form and compare against previously Create'd forms

Powered by Google App Engine
This is Rietveld 408576698