summaryrefslogtreecommitdiff
path: root/chromium/net/test/python_utils.cc
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-08 14:30:41 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-12 13:49:54 +0200
commitab0a50979b9eb4dfa3320eff7e187e41efedf7a9 (patch)
tree498dfb8a97ff3361a9f7486863a52bb4e26bb898 /chromium/net/test/python_utils.cc
parent4ce69f7403811819800e7c5ae1318b2647e778d1 (diff)
downloadqtwebengine-chromium-ab0a50979b9eb4dfa3320eff7e187e41efedf7a9.tar.gz
Update Chromium to beta version 37.0.2062.68
Change-Id: I188e3b5aff1bec75566014291b654eb19f5bc8ca Reviewed-by: Andras Becsi <andras.becsi@digia.com>
Diffstat (limited to 'chromium/net/test/python_utils.cc')
-rw-r--r--chromium/net/test/python_utils.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/net/test/python_utils.cc b/chromium/net/test/python_utils.cc
index e249a27f27a..2555c55c264 100644
--- a/chromium/net/test/python_utils.cc
+++ b/chromium/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
@@ -106,7 +106,7 @@ bool GetPyProtoPath(base::FilePath* dir) {
return true;
}
-bool GetPythonCommand(CommandLine* python_cmd) {
+bool GetPythonCommand(base::CommandLine* python_cmd) {
DCHECK(python_cmd);
#if defined(OS_WIN)