diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-23 05:23:13 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-23 05:23:13 +0000 |
commit | b7243c40f2c0e4742843d56d0a46c3d5ba2008d1 (patch) | |
tree | f3ba1cec0461cab175f637deab6a837cfbb4d105 /chrome/common | |
parent | 87a03a05c9dd5b2bf5fcf916526361f5c33b71de (diff) | |
download | chromium_src-b7243c40f2c0e4742843d56d0a46c3d5ba2008d1.zip chromium_src-b7243c40f2c0e4742843d56d0a46c3d5ba2008d1.tar.gz chromium_src-b7243c40f2c0e4742843d56d0a46c3d5ba2008d1.tar.bz2 |
Random bits of header and whitespace cleanup.
BUG=none
TEST=noe
Review URL: http://codereview.chromium.org/3062003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53437 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/child_process.cc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/common/child_process.cc b/chrome/common/child_process.cc index 328ca14..71d025a 100644 --- a/chrome/common/child_process.cc +++ b/chrome/common/child_process.cc @@ -1,19 +1,22 @@ -// Copyright (c) 2006-2008 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/common/child_process.h" +#if defined(OS_POSIX) +#include <signal.h> // For SigUSR1Handler below. +#endif + #include "app/l10n_util.h" #include "base/message_loop.h" #include "base/process_util.h" #include "base/string_util.h" +#include "base/thread.h" #include "chrome/common/child_thread.h" #include "grit/chromium_strings.h" #if defined(OS_POSIX) -#include <signal.h> - static void SigUSR1Handler(int signal) { } #endif |