diff options
Diffstat (limited to 'base/time.h')
-rw-r--r-- | base/time.h | 5 |
1 files changed, 2 insertions, 3 deletions
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 }; |