summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-06 08:02:54 +0000
committerjar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-06 08:02:54 +0000
commita7e4016e7eb30d8056e1e65e2888de36a15a0f4f (patch)
treeda4240fee88c724dc55cb8f7f0035d95945fd273 /base
parent656643743582980d046f757590e20a48ec9e4bfb (diff)
downloadchromium_src-a7e4016e7eb30d8056e1e65e2888de36a15a0f4f.zip
chromium_src-a7e4016e7eb30d8056e1e65e2888de36a15a0f4f.tar.gz
chromium_src-a7e4016e7eb30d8056e1e65e2888de36a15a0f4f.tar.bz2
Revert 77066 - Test impact of using default windows allocator
I'll revert this as soon as the builds kick off. I just want to look at perf impact. I'll ceate a fancier CL that uses different allocators for render vs browser, but I wanted an overall baseline for transitioning completely from TCMalloc to the default allocator on Windows. TBR=cpu Review URL: http://codereview.chromium.org/6635004 TBR=jar@chromium.org Review URL: http://codereview.chromium.org/6623041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77067 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/allocator/allocator_shim.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/allocator/allocator_shim.cc b/base/allocator/allocator_shim.cc
index 685f700..3935737 100644
--- a/base/allocator/allocator_shim.cc
+++ b/base/allocator/allocator_shim.cc
@@ -35,7 +35,7 @@ typedef enum {
} Allocator;
// This is the default allocator.
-static Allocator allocator = WINDEFAULT;
+static Allocator allocator = TCMALLOC;
// We include tcmalloc and the win_allocator to get as much inlining as
// possible.