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 f762cb6863fac6b1dcd657bcd126e38b61616b4e..f999ca29b7d08d57a556c6465ccfaac6511b8147 100644 |
--- a/third_party/WebKit/Source/wtf/WTF.cpp |
+++ b/third_party/WebKit/Source/wtf/WTF.cpp |
@@ -41,14 +41,13 @@ extern void initializeThreading(); |
bool s_initialized; |
bool s_shutdown; |
-void initialize(AdjustAmountOfExternalAllocatedMemoryFunction adjustAmountOfExternalAllocatedMemoryFunction) |
+void initialize() |
{ |
// 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; |
- ArrayBufferContents::setAdjustAmoutOfExternalAllocatedMemoryFunction(adjustAmountOfExternalAllocatedMemoryFunction); |
initializeThreading(); |
} |