Index: chrome/browser/sync/test/integration/search_engines_helper.cc |
diff --git a/chrome/browser/sync/test/integration/search_engines_helper.cc b/chrome/browser/sync/test/integration/search_engines_helper.cc |
index 2a1baa1ca76d348474997daa5fb76c385f41ffe6..6f427f4e40454de5d807154188e5d76be1c24456 100644 |
--- a/chrome/browser/sync/test/integration/search_engines_helper.cc |
+++ b/chrome/browser/sync/test/integration/search_engines_helper.cc |
@@ -39,8 +39,9 @@ GUIDToTURLMap CreateGUIDToTURLMap(TemplateURLService* service) { |
std::string GetTURLInfoString(const TemplateURL* turl) { |
DCHECK(turl); |
- return "TemplateURL: shortname: " + UTF16ToASCII(turl->short_name()) + |
- " keyword: " + UTF16ToASCII(turl->keyword()) + " url: " + turl->url(); |
+ return "TemplateURL: shortname: " + base::UTF16ToASCII(turl->short_name()) + |
+ " keyword: " + base::UTF16ToASCII(turl->keyword()) + " url: " + |
+ turl->url(); |
} |
bool TURLsMatch(const TemplateURL* turl1, const TemplateURL* turl2) { |