diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 14:06:48 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-11 14:06:48 +0000 |
commit | 7903e0262e2dda44eaa186d126cf88e2cc1470eb (patch) | |
tree | a44957a8d1a49f0c590f797c0b36de8928bd5646 /base/time.h | |
parent | 32346a04167c5abcc16fd92bea50ec232b68e87d (diff) | |
download | chromium_src-7903e0262e2dda44eaa186d126cf88e2cc1470eb.zip chromium_src-7903e0262e2dda44eaa186d126cf88e2cc1470eb.tar.gz chromium_src-7903e0262e2dda44eaa186d126cf88e2cc1470eb.tar.bz2 |
Don't use the Windows high-resolution Time::Now hacks on Posix, the normal resultion from the time APIs there should be enough.
Review URL: http://codereview.chromium.org/2420
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/time.h')
-rw-r--r-- | base/time.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/base/time.h b/base/time.h index 427289d..addb246 100644 --- a/base/time.h +++ b/base/time.h @@ -317,12 +317,6 @@ class Time { private: friend class TimeDelta; - // Platform-dependent wall clock interface - static int64 CurrentWallclockMicroseconds(); - - // Initialize or resynchronize the clock. - static void InitializeClock(); - // Explodes the given time to either local time |is_local = true| or UTC // |is_local = false|. void Explode(bool is_local, Exploded* exploded) const; @@ -340,12 +334,6 @@ class Time { // Time in microseconds in UTC. int64 us_; - - // The initial time sampled via this API. - static int64 initial_time_; - - // The initial clock counter sampled via this API. - static TimeTicks initial_ticks_; }; inline Time TimeDelta::operator+(Time t) const { @@ -451,4 +439,3 @@ inline TimeTicks TimeDelta::operator+(TimeTicks t) const { } #endif // BASE_TIME_H_ - |