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

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

Issue 112433004: Update uses of UTF conversions in chrome_frame/, chromeos/, components/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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_field_data.cc
diff --git a/components/autofill/core/common/form_field_data.cc b/components/autofill/core/common/form_field_data.cc
index d89e66e325e90a9001b160c79367f7b4a6708fc4..6c2d5ec312f5c47ccb984be039a3ef0378a89b55 100644
--- a/components/autofill/core/common/form_field_data.cc
+++ b/components/autofill/core/common/form_field_data.cc
@@ -151,11 +151,11 @@ bool DeserializeFormFieldData(PickleIterator* iter,
std::ostream& operator<<(std::ostream& os, const FormFieldData& field) {
return os
- << UTF16ToUTF8(field.label)
+ << base::UTF16ToUTF8(field.label)
<< " "
- << UTF16ToUTF8(field.name)
+ << base::UTF16ToUTF8(field.name)
<< " "
- << UTF16ToUTF8(field.value)
+ << base::UTF16ToUTF8(field.value)
<< " "
<< field.form_control_type
<< " "
« no previous file with comments | « components/autofill/core/common/form_data_unittest.cc ('k') | components/autofill/core/common/form_field_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698