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

Unified Diff: net/base/net_util_win.cc

Issue 112963005: Update uses of UTF conversions in courgette/, device/, extensions/, google_apis/, gpu/, ipc/, media… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « net/base/net_util_unittest.cc ('k') | net/base/network_time_notifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_util_win.cc
diff --git a/net/base/net_util_win.cc b/net/base/net_util_win.cc
index b15337b796db8a44dc91665ccc9c753137ac6ed6..210028664a73820c9facab21ba3eaa1a0b51c617 100644
--- a/net/base/net_util_win.cc
+++ b/net/base/net_util_win.cc
@@ -127,7 +127,7 @@ bool FileURLToFilePath(const GURL& url, base::FilePath* file_path) {
file_path_str = base::SysNativeMBToWide(path);
return !file_path_str.empty();
}
- file_path_str.assign(UTF8ToWide(path));
+ file_path_str.assign(base::UTF8ToWide(path));
// We used to try too hard and see if |path| made up entirely of
// the 1st 256 characters in the Unicode was a zero-extended UTF-16.
« no previous file with comments | « net/base/net_util_unittest.cc ('k') | net/base/network_time_notifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698