diff options
author | tzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-18 11:53:14 +0000 |
---|---|---|
committer | tzik@chromium.org <tzik@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-18 11:53:14 +0000 |
commit | e7972d1107a290976b89a40e6de18771d115876e (patch) | |
tree | c6591a0fc4958f8e93e41c64ac13d09612e4b606 /base/time_posix.cc | |
parent | feef5f02dbf93e1c478e8e6141c27ffde86f5b1c (diff) | |
download | chromium_src-e7972d1107a290976b89a40e6de18771d115876e.zip chromium_src-e7972d1107a290976b89a40e6de18771d115876e.tar.gz chromium_src-e7972d1107a290976b89a40e6de18771d115876e.tar.bz2 |
Adding missing inclusions
BUG=None
TEST='LoggingTest.*,FileUtilTest.*,PlatformFile.*,StringNumberConversionsTest.*,Time,TimeTicks,TimeDelta'
Review URL: http://codereview.chromium.org/7108033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89595 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time_posix.cc')
-rw-r--r-- | base/time_posix.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/time_posix.cc b/base/time_posix.cc index e9ea434..39b2a75 100644 --- a/base/time_posix.cc +++ b/base/time_posix.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 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. @@ -6,6 +6,7 @@ #include <sys/time.h> #include <time.h> +#include <unistd.h> #include <limits> |