• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2012 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_
6 #define BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_
7 
8 #include <stddef.h>  // for size_t
9 
10 #include "base/base_export.h"
11 #include "build/build_config.h"
12 
13 namespace base {
14 namespace allocator {
15 
16 // Request that the allocator release any free memory it knows about to the
17 // system.
18 BASE_EXPORT void ReleaseFreeMemory();
19 
20 }  // namespace allocator
21 }  // namespace base
22 
23 #endif  // BASE_ALLOCATOR_ALLOCATOR_EXTENSION_H_
24