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

Unified Diff: chrome/browser/autofill/form_structure_browsertest.cc

Issue 7063031: Heuristics for grabber-continental.com.out (select-one) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
Index: chrome/browser/autofill/form_structure_browsertest.cc
diff --git a/chrome/browser/autofill/form_structure_browsertest.cc b/chrome/browser/autofill/form_structure_browsertest.cc
index 71f7c13ce17cbb8bb5ed2d964a7334a04e223bfa..6d92cf23f03ae25c6dce5417b563327f60528124 100644
--- a/chrome/browser/autofill/form_structure_browsertest.cc
+++ b/chrome/browser/autofill/form_structure_browsertest.cc
@@ -77,6 +77,14 @@ std::string FormStructureBrowserTest::FormStructuresToString(
(*iter)->begin();
field_iter != (*iter)->end();
++field_iter) {
+ forms_string += UTF16ToUTF8((*field_iter)->label);
+ forms_string += "|";
+ forms_string += UTF16ToUTF8((*field_iter)->name);
+ forms_string += "|";
+ forms_string += UTF16ToUTF8((*field_iter)->value);
+ forms_string += "|";
+ forms_string += UTF16ToUTF8((*field_iter)->form_control_type);
+ forms_string += "|";
Ilya Sherman 2011/05/25 03:52:02 Did you intentionally to leave these in, or was th
dhollowa 2011/05/25 15:29:47 Debugging. On 2011/05/25 03:52:02, Ilya Sherman w
forms_string += AutofillType::FieldTypeToString((*field_iter)->type());
forms_string += "\n";
}

Powered by Google App Engine
This is Rietveld 408576698