summaryrefslogtreecommitdiffstats
path: root/base/process_util.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-23 21:26:47 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-23 21:26:47 +0000
commit3d2217d4327f2033ace44ab0aa87c9f50fc011fe (patch)
tree89444d2d3ceb9134ab9c0a8e35d06afe388c0966 /base/process_util.h
parentab417244b7fe6b281eaba42c10a045efd8474bb1 (diff)
downloadchromium_src-3d2217d4327f2033ace44ab0aa87c9f50fc011fe.zip
chromium_src-3d2217d4327f2033ace44ab0aa87c9f50fc011fe.tar.gz
chromium_src-3d2217d4327f2033ace44ab0aa87c9f50fc011fe.tar.bz2
Fix environment variables not being used after switching to ChildProcessLauncher.
BUG=28602 TEST=verified flash works on Mac Review URL: http://codereview.chromium.org/439005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32854 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util.h')
-rw-r--r--base/process_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/process_util.h b/base/process_util.h
index cd26c2a..41d1d17 100644
--- a/base/process_util.h
+++ b/base/process_util.h
@@ -150,7 +150,7 @@ bool LaunchApp(const std::vector<std::string>& argv,
// Similar to above, but also (un)set environment variables in child process
// through |environ|.
-typedef std::vector<std::pair<const char*, const char*> > environment_vector;
+typedef std::vector<std::pair<std::string, std::string> > environment_vector;
bool LaunchApp(const std::vector<std::string>& argv,
const environment_vector& environ,
const file_handle_mapping_vector& fds_to_remap,