diff options
author | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 07:46:43 +0000 |
---|---|---|
committer | pvalchev@google.com <pvalchev@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-10 07:46:43 +0000 |
commit | 66700d449400266dbfc47c35e1e360efd57e4206 (patch) | |
tree | 6b9aa8447c726540bd5a90ea495eb6d12a8b5435 /base/process_posix.cc | |
parent | 62c68bee3e9ced3ba82100d04da274a0cf669f25 (diff) | |
download | chromium_src-66700d449400266dbfc47c35e1e360efd57e4206.zip chromium_src-66700d449400266dbfc47c35e1e360efd57e4206.tar.gz chromium_src-66700d449400266dbfc47c35e1e360efd57e4206.tar.bz2 |
BSD port changes for base/ (OS_POSIX/GTK instead of OS_LINUX
where applicable, missing includes, etc)
Review URL: http://codereview.chromium.org/774001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_posix.cc')
-rw-r--r-- | base/process_posix.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/process_posix.cc b/base/process_posix.cc index 29166b9..904884a 100644 --- a/base/process_posix.cc +++ b/base/process_posix.cc @@ -2,9 +2,12 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "base/process.h" + +#include <sys/types.h> +#include <sys/time.h> #include <sys/resource.h> -#include "base/process.h" #include "base/process_util.h" namespace base { |