Index: third_party/WebKit/Source/wtf/WTF.cpp |
diff --git a/third_party/WebKit/Source/wtf/WTF.cpp b/third_party/WebKit/Source/wtf/WTF.cpp |
index 010005c6b2c4d6ac8f2e57de08e87536d3690f2d..f762cb6863fac6b1dcd657bcd126e38b61616b4e 100644 |
--- a/third_party/WebKit/Source/wtf/WTF.cpp |
+++ b/third_party/WebKit/Source/wtf/WTF.cpp |
@@ -41,15 +41,13 @@ extern void initializeThreading(); |
bool s_initialized; |
bool s_shutdown; |
-void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction, AdjustAmountOfExternalAllocatedMemoryFunction adjustAmountOfExternalAllocatedMemoryFunction) |
+void initialize(AdjustAmountOfExternalAllocatedMemoryFunction adjustAmountOfExternalAllocatedMemoryFunction) |
{ |
// WTF, and Blink in general, cannot handle being re-initialized, even if shutdown first. |
// Make that explicit here. |
RELEASE_ASSERT(!s_initialized); |
RELEASE_ASSERT(!s_shutdown); |
s_initialized = true; |
- setCurrentTimeFunction(currentTimeFunction); |
- setMonotonicallyIncreasingTimeFunction(monotonicallyIncreasingTimeFunction); |
ArrayBufferContents::setAdjustAmoutOfExternalAllocatedMemoryFunction(adjustAmountOfExternalAllocatedMemoryFunction); |
initializeThreading(); |
} |