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() |
<< " " |