| Index: base/allocator/allocator_shim.h
|
| diff --git a/base/allocator/allocator_shim.h b/base/allocator/allocator_shim.h
|
| index f1a1e3d7ce0386361480f285cc24f206aee27ac5..0944de5c4a92444802aa391d04512616f47d8d59 100644
|
| --- a/base/allocator/allocator_shim.h
|
| +++ b/base/allocator/allocator_shim.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <stddef.h>
|
|
|
| +#include "base/allocator/allocator_shim_internals.h"
|
| #include "base/base_export.h"
|
|
|
| namespace base {
|
| @@ -77,7 +78,7 @@ BASE_EXPORT void SetCallNewHandlerOnMallocFailure(bool value);
|
|
|
| // Allocates |size| bytes or returns nullptr. It does NOT call the new_handler,
|
| // regardless of SetCallNewHandlerOnMallocFailure().
|
| -BASE_EXPORT void* UncheckedAlloc(size_t size);
|
| +SHIM_ALWAYS_EXPORT void* UncheckedAlloc(size_t size);
|
|
|
| // Inserts |dispatch| in front of the allocator chain. This method is NOT
|
| // thread-safe w.r.t concurrent invocations of InsertAllocatorDispatch().
|
|
|