From adbe6770f04ace84fb3d51a78f16c4b97854c58c Mon Sep 17 00:00:00 2001 From: "thakis@chromium.org" Date: Sun, 29 Jul 2012 17:33:00 +0000 Subject: mac: Remove one static initializer. BUG=94794 Review URL: https://chromiumcodereview.appspot.com/10834059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148915 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/mac/objc_zombie.mm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'chrome/common/mac') diff --git a/chrome/common/mac/objc_zombie.mm b/chrome/common/mac/objc_zombie.mm index 5ef00a6..98f73c7 100644 --- a/chrome/common/mac/objc_zombie.mm +++ b/chrome/common/mac/objc_zombie.mm @@ -12,7 +12,6 @@ #import #include -#include #include "base/debug/stack_trace.h" #include "base/lazy_instance.h" @@ -253,8 +252,7 @@ BOOL GetZombieRecord(id object, ZombieRecord* record) { // Dump the symbols. This is pulled out into a function to make it // easy to use DCHECK to dump only in debug builds. BOOL DumpDeallocTrace(const void* const* array, int size) { - // |cerr| because that's where PrintBacktrace() sends output. - std::cerr << "Backtrace from -dealloc:\n"; + fprintf(stderr, "Backtrace from -dealloc:\n"); base::debug::StackTrace(array, size).PrintBacktrace(); return YES; -- cgit v1.1