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

Unified Diff: chrome/browser/sync/test/integration/search_engines_helper.cc

Issue 176843022: Move UTF16ToASCII, remove WideToASCII. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months 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: 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) {
« no previous file with comments | « chrome/browser/search_engines/template_url_service.cc ('k') | chrome/browser/sync/test/integration/sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698