Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(162)

Unified Diff: base/time_win.cc

Issue 3082014: GTTF: Avoid assertion failures caused by clock drift.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/time.h ('k') | base/time_win_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/time_win.cc
===================================================================
--- base/time_win.cc (revision 54549)
+++ base/time_win.cc (working copy)
@@ -331,22 +331,20 @@
}
TimeDelta Now() {
- // Our maximum tolerance for QPC drifting.
- const int kMaxTimeDriftMicroseconds = 60150;
+ if (IsUsingHighResClock())
+ return TimeDelta::FromMicroseconds(UnreliableNow());
- if (IsUsingHighResClock()) {
- int64 now = UnreliableNow();
-
- // Verify that QPC does not seem to drift.
- DCHECK_LT(abs((now - ReliableNow()) - skew_), kMaxTimeDriftMicroseconds);
-
- return TimeDelta::FromMicroseconds(now);
- }
-
// Just fallback to the slower clock.
return RolloverProtectedNow();
}
+ int64 GetQPCDriftMicroseconds() {
+ if (!IsUsingHighResClock())
+ return 0;
+
+ return abs((UnreliableNow() - ReliableNow()) - skew_);
brettw 2010/08/03 18:17:35 Is this right? It seems like the sign of Unreliabl
cpu_(ooo_6.6-7.5) 2010/08/04 17:44:42 Seems ok to me. You *could* remove the outer abs()
+ }
+
private:
// Synchronize the QPC clock with GetSystemTimeAsFileTime.
void InitializeClock() {
@@ -398,3 +396,8 @@
TimeTicks TimeTicks::HighResNow() {
return TimeTicks() + Singleton<HighResNowSingleton>::get()->Now();
}
+
+// static
+int64 TimeTicks::GetQPCDriftMicroseconds() {
+ return Singleton<HighResNowSingleton>::get()->GetQPCDriftMicroseconds();
+}
« no previous file with comments | « base/time.h ('k') | base/time_win_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698