| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_ | 5 #ifndef BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H |
| 6 #define BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_ | 6 #define BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H |
| 7 | 7 |
| 8 #include <stddef.h> // for size_t | 8 #include <stddef.h> // for size_t |
| 9 | 9 |
| 10 #include "base/allocator/allocator_extension_thunks.h" | 10 #include "base/allocator/allocator_extension_thunks.h" |
| 11 #include "base/base_export.h" | 11 #include "base/base_export.h" |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 namespace allocator { | 15 namespace allocator { |
| 16 | 16 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 BASE_EXPORT void SetGetStatsFunction( | 50 BASE_EXPORT void SetGetStatsFunction( |
| 51 thunks::GetStatsFunction get_stats_function); | 51 thunks::GetStatsFunction get_stats_function); |
| 52 | 52 |
| 53 BASE_EXPORT void SetReleaseFreeMemoryFunction( | 53 BASE_EXPORT void SetReleaseFreeMemoryFunction( |
| 54 thunks::ReleaseFreeMemoryFunction release_free_memory_function); | 54 thunks::ReleaseFreeMemoryFunction release_free_memory_function); |
| 55 | 55 |
| 56 } // namespace allocator | 56 } // namespace allocator |
| 57 } // namespace base | 57 } // namespace base |
| 58 | 58 |
| 59 #endif // BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_ | 59 #endif |
| OLD | NEW |