Index: chrome/browser/importer/firefox_importer_utils.cc |
=================================================================== |
--- chrome/browser/importer/firefox_importer_utils.cc (revision 184354) |
+++ chrome/browser/importer/firefox_importer_utils.cc (working copy) |
@@ -71,7 +71,7 @@ |
&path16, 0, ASCIIToUTF16("/"), ASCIIToUTF16("\\")); |
#endif |
base::FilePath path = |
- base::FilePath::FromWStringHack(base::UTF16ToWide(path16)); |
+ base::FilePath::FromWStringHack(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 @@ |
// file, we could go straight from bytes -> filepath; |
// otherwise, we're out of luck here. |
*app_path = base::FilePath::FromWStringHack( |
- base::UTF8ToWide(line.substr(equal + 1))); |
+ UTF8ToWide(line.substr(equal + 1))); |
} |
} |
} |