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

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

Issue 10391178: 1. Enable large object pointer offset check in release build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 months 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 | Annotate | Revision Log
OLDNEW
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 #include "base/allocator/allocator_extension_thunks.h" 5 #include "base/allocator/allocator_extension_thunks.h"
6 6
7 #include <cstddef> // for NULL 7 #include <cstddef> // for NULL
8 8
9 namespace base { 9 namespace base {
10 namespace allocator { 10 namespace allocator {
11 namespace thunks { 11 namespace thunks {
12 12
13 // This slightly odd translation unit exists because of the peculularity of how 13 // This slightly odd translation unit exists because of the peculularity of how
14 // allocator_unittests works on windows. That target has to perform 14 // allocator_unittests and tcmalloc tests work on windows. That target has
15 // tcmalloc-specific initialization on windows, but it cannot depend on base 15 // to perform tcmalloc-specific initialization on windows, but it cannot depend
16 // otherwise. This target sits in the middle - both libbase and 16 // on base otherwise.
17 // allocator_unittests can depend on it. 17 // This target sits in the middle - libbase, allocator_unittests and tcmalloc
rvargas (doing something else) 2012/05/19 01:08:04 nit: libbase -> base
kaiwang 2012/05/21 18:11:42 Done.
18 // tests can depend on it.
18 // This file can't depend on anything else in base, including logging. 19 // This file can't depend on anything else in base, including logging.
19 20
20 static GetStatsFunction* g_get_stats_function = NULL; 21 static GetStatsFunction* g_get_stats_function = NULL;
21 static ReleaseFreeMemoryFunction* g_release_free_memory_function = NULL; 22 static ReleaseFreeMemoryFunction* g_release_free_memory_function = NULL;
22 23
23 void SetGetStatsFunction(GetStatsFunction* get_stats_function) { 24 void SetGetStatsFunction(GetStatsFunction* get_stats_function) {
24 g_get_stats_function = get_stats_function; 25 g_get_stats_function = get_stats_function;
25 } 26 }
26 27
27 GetStatsFunction* GetGetStatsFunction() { 28 GetStatsFunction* GetGetStatsFunction() {
28 return g_get_stats_function; 29 return g_get_stats_function;
29 } 30 }
30 31
31 void SetReleaseFreeMemoryFunction( 32 void SetReleaseFreeMemoryFunction(
32 ReleaseFreeMemoryFunction* release_free_memory_function) { 33 ReleaseFreeMemoryFunction* release_free_memory_function) {
33 g_release_free_memory_function = release_free_memory_function; 34 g_release_free_memory_function = release_free_memory_function;
34 } 35 }
35 36
36 ReleaseFreeMemoryFunction* GetReleaseFreeMemoryFunction() { 37 ReleaseFreeMemoryFunction* GetReleaseFreeMemoryFunction() {
37 return g_release_free_memory_function; 38 return g_release_free_memory_function;
38 } 39 }
39 40
40 } // namespace thunks 41 } // namespace thunks
41 } // namespace allocator 42 } // namespace allocator
42 } // namespace base 43 } // namespace base
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698