From c5324208455858b3393a3e1887366f858c588a2d Mon Sep 17 00:00:00 2001 From: "deanm@google.com" Date: Tue, 9 Sep 2008 08:58:51 +0000 Subject: Reapply r1633 (which was reverted by r1635), with some additional modifications. Consolidate all timer resolution code to time.h, and always depend on TimeTicks::Now for 1ms resolution. Review URL: http://codereview.chromium.org/1806 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1893 0039d316-1c4b-4281-b951-d872f2087c98 --- base/time.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'base/time.h') diff --git a/base/time.h b/base/time.h index c25419f..cc66eda 100644 --- a/base/time.h +++ b/base/time.h @@ -436,9 +436,8 @@ class TimeTicks { int64 ticks_; #if defined(OS_WIN) - // The function to use for counting ticks. - typedef int (__stdcall *TickFunction)(void); - static TickFunction tick_function_; + typedef DWORD (*TickFunctionType)(void); + static TickFunctionType SetMockTickFunction(TickFunctionType ticker); #endif }; -- cgit v1.1