Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: base/allocator/allocator_extension_thunks.h

Issue 1505743002: Remove allocator_extension_thunks since this layer is not required (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@allocator_clean_win
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/allocator/allocator_extension.cc ('k') | base/allocator/allocator_extension_thunks.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef BASE_ALLOCATOR_ALLOCATOR_EXTENSION_THUNKS_H_
6 #define BASE_ALLOCATOR_ALLOCATOR_EXTENSION_THUNKS_H_
7
8 #include <stddef.h> // for size_t
9
10 namespace base {
11 namespace allocator {
12 namespace thunks {
13
14 // WARNING: You probably don't want to use this file unless you are routing a
15 // new allocator extension from a specific allocator implementation to base.
16 // See allocator_extension.h to see the interface that base exports.
17
18 typedef void (*ReleaseFreeMemoryFunction)();
19 void SetReleaseFreeMemoryFunction(
20 ReleaseFreeMemoryFunction release_free_memory_function);
21 ReleaseFreeMemoryFunction GetReleaseFreeMemoryFunction();
22
23 typedef bool (*GetNumericPropertyFunction)(const char* name, size_t* value);
24 void SetGetNumericPropertyFunction(
25 GetNumericPropertyFunction get_numeric_property_function);
26 GetNumericPropertyFunction GetGetNumericPropertyFunction();
27
28 } // namespace thunks
29 } // namespace allocator
30 } // namespace base
31
32 #endif // BASE_ALLOCATOR_ALLOCATOR_EXTENSION_THUNKS_H_
OLDNEW
« no previous file with comments | « base/allocator/allocator_extension.cc ('k') | base/allocator/allocator_extension_thunks.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698