diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 20:39:58 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-18 20:39:58 +0000 |
commit | eb1bd83d1c8da90c36d6bc96eaad7ea6f94891c3 (patch) | |
tree | 9711b7b2e24805851ce1a541eb91d7dd116d983d /chrome/browser/child_process_launcher.cc | |
parent | 80c6bf7235f9f6fcfbff12d2ec68e0e03d7c4926 (diff) | |
download | chromium_src-eb1bd83d1c8da90c36d6bc96eaad7ea6f94891c3.zip chromium_src-eb1bd83d1c8da90c36d6bc96eaad7ea6f94891c3.tar.gz chromium_src-eb1bd83d1c8da90c36d6bc96eaad7ea6f94891c3.tar.bz2 |
Fix typos for defined(OS_XXX).
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2121006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/child_process_launcher.cc')
-rw-r--r-- | chrome/browser/child_process_launcher.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/child_process_launcher.cc b/chrome/browser/child_process_launcher.cc index 206d8a7..60215d5 100644 --- a/chrome/browser/child_process_launcher.cc +++ b/chrome/browser/child_process_launcher.cc @@ -1,9 +1,11 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/child_process_launcher.h" +#include <utility> // For std::pair. + #include "base/command_line.h" #include "base/logging.h" #include "base/scoped_ptr.h" @@ -66,7 +68,7 @@ class ChildProcessLauncher::Context &Context::LaunchInternal, #if defined(OS_WIN) exposed_dir, -#elif defined(POSIX) +#elif defined(OS_POSIX) use_zygote, environ, ipcfd, |