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

Unified Diff: webkit/glue/form_field.h

Issue 2078016: AutoFill fill billing address when credit card settings specify a billing address. (Closed)
Patch Set: Addressing review comments. Created 10 years, 7 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/form_manager_unittest.cc ('k') | webkit/glue/form_field.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/form_field.h
diff --git a/webkit/glue/form_field.h b/webkit/glue/form_field.h
index b0e9decfab348e8859ab2b1ffc46b640707f919e..691d2af96f24bc08aafd2fbc81670279e4c358eb 100644
--- a/webkit/glue/form_field.h
+++ b/webkit/glue/form_field.h
@@ -35,9 +35,17 @@ class FormField {
}
void set_size(int size) { size_ = size; }
+ // Equality tests for identity which does not include |value_| or |size_|.
+ // Use |StrictlyEqualsHack| method to test all members.
+ // TODO(dhollowa): These operators need to be revised when we implement field
+ // ids.
bool operator==(const FormField& field) const;
bool operator!=(const FormField& field) const;
+ // Test equality of all data members.
+ // TODO(dhollowa): This will be removed when we implement field ids.
+ bool StrictlyEqualsHack(const FormField& field) const;
+
private:
string16 label_;
string16 name_;
« no previous file with comments | « chrome/renderer/form_manager_unittest.cc ('k') | webkit/glue/form_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698