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

Unified Diff: components/autofill/core/common/form_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_data.cc
diff --git a/components/autofill/core/common/form_data.cc b/components/autofill/core/common/form_data.cc
index 050e2e5758250f83e3d43a4f9a55b33d39192e89..2297e1a3818695358d3c267e3624961494944e7d 100644
--- a/components/autofill/core/common/form_data.cc
+++ b/components/autofill/core/common/form_data.cc
@@ -80,8 +80,8 @@ bool FormData::operator!=(const FormData& form) const {
}
std::ostream& operator<<(std::ostream& os, const FormData& form) {
- os << UTF16ToUTF8(form.name) << " "
- << UTF16ToUTF8(form.method) << " "
+ os << base::UTF16ToUTF8(form.name) << " "
+ << base::UTF16ToUTF8(form.method) << " "
<< form.origin << " "
<< form.action << " "
<< form.user_submitted << " "

Powered by Google App Engine
This is Rietveld 408576698