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

Unified Diff: webkit/glue/form_field_values.cc

Issue 651002: AutoFill forms. We do this by responding to a message from WebKit which send... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 10 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
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/form_field_values.cc
===================================================================
--- webkit/glue/form_field_values.cc (revision 39307)
+++ webkit/glue/form_field_values.cc (working copy)
@@ -42,8 +42,11 @@
for (size_t i = 0; i < input_elements.size(); i++) {
const WebInputElement& input_element = input_elements[i];
- if (input_element.isEnabledFormControl())
- elements.push_back(FormField(input_element));
+ if (input_element.isEnabledFormControl()) {
+ // TODO(jhawkins): Remove this check when we have labels.
+ if (!input_element.nameForAutofill().isEmpty())
+ elements.push_back(FormField(input_element));
+ }
}
}
« no previous file with comments | « chrome/renderer/render_view.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698