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

Unified Diff: chrome/browser/importer/firefox_importer_utils.cc

Issue 12314090: Add utf_string_conversions to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/browser/importer/firefox_importer_unittest.cc ('k') | chrome/browser/importer/ie_importer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/importer/firefox_importer_utils.cc
diff --git a/chrome/browser/importer/firefox_importer_utils.cc b/chrome/browser/importer/firefox_importer_utils.cc
index 2bbcb39aca448fe7b61281de0eafb9c466d14d85..b26368211c8ee29cb647ff5550c30172ac6d268c 100644
--- a/chrome/browser/importer/firefox_importer_utils.cc
+++ b/chrome/browser/importer/firefox_importer_utils.cc
@@ -71,7 +71,7 @@ base::FilePath GetFirefoxProfilePath() {
&path16, 0, ASCIIToUTF16("/"), ASCIIToUTF16("\\"));
#endif
base::FilePath path =
- base::FilePath::FromWStringHack(UTF16ToWide(path16));
+ base::FilePath::FromWStringHack(base::UTF16ToWide(path16));
// IsRelative=1 means the folder path would be relative to the
// path of profiles.ini. IsRelative=0 refers to a custom profile
@@ -123,7 +123,7 @@ bool GetFirefoxVersionAndPathFromProfile(const base::FilePath& profile_path,
// file, we could go straight from bytes -> filepath;
// otherwise, we're out of luck here.
*app_path = base::FilePath::FromWStringHack(
- UTF8ToWide(line.substr(equal + 1)));
+ base::UTF8ToWide(line.substr(equal + 1)));
}
}
}
« no previous file with comments | « chrome/browser/importer/firefox_importer_unittest.cc ('k') | chrome/browser/importer/ie_importer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698