Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / wtf / FastMalloc.h
index 1139f57..f2db91e 100644 (file)
@@ -22,7 +22,6 @@
 #define WTF_FastMalloc_h
 
 #include "wtf/WTFExport.h"
-#include <cstddef>
 
 namespace WTF {
 
@@ -37,15 +36,6 @@ WTF_EXPORT char* fastStrDup(const char*);
 
 WTF_EXPORT void fastFree(void*);
 
-WTF_EXPORT void releaseFastMallocFreeMemory();
-
-struct FastMallocStatistics {
-    size_t reservedVMBytes;
-    size_t committedVMBytes;
-    size_t freeListBytes;
-};
-WTF_EXPORT FastMallocStatistics fastMallocStatistics();
-
 } // namespace WTF
 
 using WTF::fastFree;