diff options
author | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 03:45:46 +0000 |
---|---|---|
committer | jar@chromium.org <jar@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-01 03:45:46 +0000 |
commit | 31b04d71f05924ee6ef914be7b7802bef73d5bf6 (patch) | |
tree | 96a2eeb8b83e476aa2805f60842ae0d603066256 /base/tracked_objects.cc | |
parent | 040a142d356fa19e61461eecf987e8c051523451 (diff) | |
download | chromium_src-31b04d71f05924ee6ef914be7b7802bef73d5bf6.zip chromium_src-31b04d71f05924ee6ef914be7b7802bef73d5bf6.tar.gz chromium_src-31b04d71f05924ee6ef914be7b7802bef73d5bf6.tar.bz2 |
Enable default object tracking no Mac
We had trouble with base_unittests before, so we
ifdef'ed out the larger landing. This tiny
switch CL will turn it on for the Mac, but can
be quickly reverted if there is a problem.
Scott Hess was able to debug and identify the
cause of the problem (yeah Scott!!!!). I think
the code we landed corrects for the issue he identified,
and this should prove it (or get reverted trying).
r=rtenneti,shess
bug=101856
Review URL: http://codereview.chromium.org/8387059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108072 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/tracked_objects.cc')
-rw-r--r-- | base/tracked_objects.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/tracked_objects.cc b/base/tracked_objects.cc index 7833129..7c04747 100644 --- a/base/tracked_objects.cc +++ b/base/tracked_objects.cc @@ -19,12 +19,7 @@ namespace tracked_objects { namespace { // Flag to compile out almost all of the task tracking code. -#if defined(NDEBUG) && defined(OS_MAC) -// Avoid problems with base_unittest crashes in Mac for now. -static const bool kTrackAllTaskObjects = false; -#else static const bool kTrackAllTaskObjects = true; -#endif // When ThreadData is first initialized, should we start in an ACTIVE state to // record all of the startup-time tasks, or should we start up DEACTIVATED, so |