summaryrefslogtreecommitdiffstats
path: root/base/time_posix.cc
diff options
context:
space:
mode:
authorrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:06:16 +0000
committerrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:06:16 +0000
commite37e88a0c9d8cd3a3dba3b4d8e2af0981a325206 (patch)
treeebb143dca4d6fb60cedf92760c3b112e2b9ace32 /base/time_posix.cc
parent8d96d62d772beae3eda5bef6f2184074651d9c90 (diff)
downloadchromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.zip
chromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.tar.gz
chromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.tar.bz2
define OS_BSD on *BSD and replace the ifdefs to use that
BUG= TEST=compile Review URL: http://codereview.chromium.org/8564020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109986 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time_posix.cc')
-rw-r--r--base/time_posix.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/time_posix.cc b/base/time_posix.cc
index 30dd380..79a0b94 100644
--- a/base/time_posix.cc
+++ b/base/time_posix.cc
@@ -171,7 +171,7 @@ Time Time::FromExploded(bool is_local, const Exploded& exploded) {
// 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_OPENBSD) || defined(OS_ANDROID)
+ defined(OS_BSD) || defined(OS_ANDROID)
// static
TimeTicks TimeTicks::Now() {