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/time_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/time_posix.cc')
-rw-r--r-- | base/time_posix.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/time_posix.cc b/base/time_posix.cc index 60771af..2490315 100644 --- a/base/time_posix.cc +++ b/base/time_posix.cc @@ -147,7 +147,7 @@ void Time::Explode(bool is_local, Exploded* exploded) const { // FreeBSD 6 has CLOCK_MONOLITHIC but defines _POSIX_MONOTONIC_CLOCK to -1. #if (defined(OS_POSIX) && \ defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0) || \ - defined(OS_FREEBSD) + defined(OS_FREEBSD) || defined(OS_OPENBSD) // static TimeTicks TimeTicks::Now() { |