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

Unified Diff: components/autofill/core/common/form_data.cc

Issue 2745803003: autofill-try
Patch Set: before I leave Created 3 years, 9 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/core/common/form_data.cc
diff --git a/components/autofill/core/common/form_data.cc b/components/autofill/core/common/form_data.cc
index 47137bb7f3b9c3d532e54ee33092efc2ddac4e12..789a6668f7521f02b8701f5af166651fd58ae42f 100644
--- a/components/autofill/core/common/form_data.cc
+++ b/components/autofill/core/common/form_data.cc
@@ -105,8 +105,8 @@ bool FormData::operator<(const FormData& form) const {
}
std::ostream& operator<<(std::ostream& os, const FormData& form) {
- os << base::UTF16ToUTF8(form.name) << " " << form.origin << " " << form.action
- << " " << form.is_form_tag << " " << form.is_formless_checkout << " "
+ os << base::UTF16ToUTF8(form.name) << "(name) " << form.origin << "(origin) " << form.action
+ << "(action) " << form.is_form_tag << "(is_form_tag) " << form.is_formless_checkout << "(is_formeless_checkout) "
<< "Fields:";
for (size_t i = 0; i < form.fields.size(); ++i) {
os << form.fields[i] << ",";

Powered by Google App Engine
This is Rietveld 408576698