summaryrefslogtreecommitdiffstats
path: root/tools/gn/function_exec_script.cc
diff options
context:
space:
mode:
authoravi <avi@chromium.org>2014-12-22 21:51:23 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-23 05:52:27 +0000
commit6b10fd03dd0b8ddb91235c49d3f498fb2002c20d (patch)
treed7aab532283c818d2103fc9b5ca8bcf29d50b2c8 /tools/gn/function_exec_script.cc
parentb126eb8f934f25877b0e6d992902e88eac3fec7f (diff)
downloadchromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.zip
chromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.tar.gz
chromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.tar.bz2
Make callers of CommandLine use it via the base:: namespace.
Covers testing/, tools/, ui/, and win8/. BUG=422426 TEST=none TBR=ben@chromium.org Review URL: https://codereview.chromium.org/819223002 Cr-Commit-Position: refs/heads/master@{#309538}
Diffstat (limited to 'tools/gn/function_exec_script.cc')
-rw-r--r--tools/gn/function_exec_script.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gn/function_exec_script.cc b/tools/gn/function_exec_script.cc
index 9d6521f..e0b5afa 100644
--- a/tools/gn/function_exec_script.cc
+++ b/tools/gn/function_exec_script.cc
@@ -128,7 +128,7 @@ Value RunExecScript(Scope* scope,
// Make the command line.
const base::FilePath& python_path = build_settings->python_path();
- CommandLine cmdline(python_path);
+ base::CommandLine cmdline(python_path);
cmdline.AppendArgPath(script_path);
if (args.size() >= 2) {