| Index: third_party/WebKit/Source/wtf/WTF.h
|
| diff --git a/third_party/WebKit/Source/wtf/WTF.h b/third_party/WebKit/Source/wtf/WTF.h
|
| index ac9352875593561a20e2282c389cbd19e2d6c656..20c696e8ed9d96dece843a2947ffa8086b785fa4 100644
|
| --- a/third_party/WebKit/Source/wtf/WTF.h
|
| +++ b/third_party/WebKit/Source/wtf/WTF.h
|
| @@ -37,14 +37,19 @@
|
|
|
| namespace WTF {
|
|
|
| -typedef void(*HistogramEnumerationFunction)(const char* name, int sample, int boundaryValue);
|
| -typedef void(*AdjustAmountOfExternalAllocatedMemoryFunction)(int size);
|
| +typedef void (*HistogramEnumerationFunction)(const char* name,
|
| + int sample,
|
| + int boundaryValue);
|
| +typedef void (*AdjustAmountOfExternalAllocatedMemoryFunction)(int size);
|
|
|
| // This function must be called exactly once from the main thread before using anything else in WTF.
|
| -WTF_EXPORT void initialize(TimeFunction currentTimeFunction, TimeFunction monotonicallyIncreasingTimeFunction, HistogramEnumerationFunction, AdjustAmountOfExternalAllocatedMemoryFunction);
|
| +WTF_EXPORT void initialize(TimeFunction currentTimeFunction,
|
| + TimeFunction monotonicallyIncreasingTimeFunction,
|
| + HistogramEnumerationFunction,
|
| + AdjustAmountOfExternalAllocatedMemoryFunction);
|
| WTF_EXPORT void shutdown();
|
| WTF_EXPORT bool isShutdown();
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| -#endif // WTF_h
|
| +#endif // WTF_h
|
|
|