summaryrefslogtreecommitdiffstats
path: root/net/test/python_utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/test/python_utils.cc')
-rw-r--r--net/test/python_utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/test/python_utils.cc b/net/test/python_utils.cc
index e249a27..a67b2c1 100644
--- a/net/test/python_utils.cc
+++ b/net/test/python_utils.cc
@@ -21,7 +21,7 @@ void AppendToPythonPath(const base::FilePath& dir) {
std::string old_path;
std::string dir_path;
#if defined(OS_WIN)
- dir_path = WideToUTF8(dir.value());
+ dir_path = base::WideToUTF8(dir.value());
#elif defined(OS_POSIX)
dir_path = dir.value();
#endif