| Index: sky/engine/wtf/WTF.cpp
|
| diff --git a/sky/engine/wtf/WTF.cpp b/sky/engine/wtf/WTF.cpp
|
| index 0880460895ef1b9145f155789919e63ba623ef84..902f8b93a01d78855fa884076b8deab19927b741 100644
|
| --- a/sky/engine/wtf/WTF.cpp
|
| +++ b/sky/engine/wtf/WTF.cpp
|
| @@ -43,7 +43,7 @@ bool s_shutdown;
|
| bool Partitions::s_initialized;
|
| PartitionAllocatorGeneric Partitions::m_bufferAllocator;
|
|
|
| -void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction)
|
| +void initialize()
|
| {
|
| // WTF, and Blink in general, cannot handle being re-initialized, even if shutdown first.
|
| // Make that explicit here.
|
| @@ -51,8 +51,6 @@ void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncr
|
| ASSERT(!s_shutdown);
|
| s_initialized = true;
|
| Partitions::initialize();
|
| - setCurrentTimeFunction(currentTimeFunction);
|
| - setMonotonicallyIncreasingTimeFunction(monotonicallyIncreasingTimeFunction);
|
| initializeThreading();
|
| }
|
|
|
|
|