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

Unified Diff: components/autofill/core/browser/form_structure_unittest.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
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | components/autofill/core/browser/name_field.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/form_structure_unittest.cc
diff --git a/components/autofill/core/browser/form_structure_unittest.cc b/components/autofill/core/browser/form_structure_unittest.cc
index db1d431752e10ed11e1c3aea103709a2b4df5bb3..299215628a47139880e879fd9628e79c0e7cd62a 100644
--- a/components/autofill/core/browser/form_structure_unittest.cc
+++ b/components/autofill/core/browser/form_structure_unittest.cc
@@ -14,6 +14,7 @@
#include "third_party/WebKit/public/web/WebInputElement.h"
#include "url/gurl.h"
+using base::ASCIIToUTF16;
using blink::WebInputElement;
namespace autofill {
@@ -34,9 +35,9 @@ class TestAutofillMetrics : public AutofillMetrics {
namespace content {
std::ostream& operator<<(std::ostream& os, const FormData& form) {
- os << UTF16ToUTF8(form.name)
+ os << base::UTF16ToUTF8(form.name)
<< " "
- << UTF16ToUTF8(form.method)
+ << base::UTF16ToUTF8(form.method)
<< " "
<< form.origin.spec()
<< " "
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | components/autofill/core/browser/name_field.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698