| Index: base/allocator/allocator_extension.h
|
| diff --git a/base/allocator/allocator_extension.h b/base/allocator/allocator_extension.h
|
| index c8061633a2b77655e5ced1cf022529a5d337cb17..ebf4493c13debe2b5a0b3a03dadd7187edf4eb08 100644
|
| --- a/base/allocator/allocator_extension.h
|
| +++ b/base/allocator/allocator_extension.h
|
| @@ -23,14 +23,6 @@ namespace allocator {
|
| // Returns true if the value has been returned, false otherwise.
|
| BASE_EXPORT bool GetAllocatorWasteSize(size_t* size);
|
|
|
| -// Request that the allocator print a human-readable description of the current
|
| -// state of the allocator into a null-terminated string in the memory segment
|
| -// buffer[0,buffer_length-1].
|
| -//
|
| -// |buffer| must point to a valid piece of memory
|
| -// |buffer_length| must be > 0.
|
| -BASE_EXPORT void GetStats(char* buffer, int buffer_length);
|
| -
|
| // Request that the allocator release any free memory it knows about to the
|
| // system.
|
| BASE_EXPORT void ReleaseFreeMemory();
|
| @@ -47,9 +39,6 @@ BASE_EXPORT void ReleaseFreeMemory();
|
| BASE_EXPORT void SetGetAllocatorWasteSizeFunction(
|
| thunks::GetAllocatorWasteSizeFunction get_allocator_waste_size_function);
|
|
|
| -BASE_EXPORT void SetGetStatsFunction(
|
| - thunks::GetStatsFunction get_stats_function);
|
| -
|
| BASE_EXPORT void SetReleaseFreeMemoryFunction(
|
| thunks::ReleaseFreeMemoryFunction release_free_memory_function);
|
|
|
|
|