Index: Source/wtf/WTF.cpp |
diff --git a/Source/wtf/WTF.cpp b/Source/wtf/WTF.cpp |
index d3ec16099d26dfdd6f911c4b2d618734f13bcb77..76a632b4b8a153ad6747ad4b343a69ec0fa82a99 100644 |
--- a/Source/wtf/WTF.cpp |
+++ b/Source/wtf/WTF.cpp |
@@ -42,7 +42,7 @@ extern void initializeThreading(); |
bool s_initialized; |
bool s_shutdown; |
-void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction) |
+void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction, HistogramEnumerationFunction histogramEnumerationFunction) |
{ |
// WTF, and Blink in general, cannot handle being re-initialized, even if shutdown first. |
// Make that explicit here. |
@@ -51,7 +51,7 @@ void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncr |
s_initialized = true; |
setCurrentTimeFunction(currentTimeFunction); |
setMonotonicallyIncreasingTimeFunction(monotonicallyIncreasingTimeFunction); |
- Partitions::initialize(); |
+ Partitions::initialize(histogramEnumerationFunction); |
initializeThreading(); |
} |