diff options
-rw-r--r-- | chrome/browser/chrome_browser_application_mac.mm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/chrome_browser_application_mac.mm b/chrome/browser/chrome_browser_application_mac.mm index 6e171fd..1a4c908 100644 --- a/chrome/browser/chrome_browser_application_mac.mm +++ b/chrome/browser/chrome_browser_application_mac.mm @@ -165,7 +165,9 @@ BOOL SwizzleNSExceptionInit() { + (void)initialize { // Turn all deallocated Objective-C objects into zombies, keeping // the most recent 10,000 of them on the treadmill. - DCHECK(ObjcEvilDoers::ZombieEnable(YES, 10000)); + // TODO(shess): Convert to a DCHECK() before the next beta channel. + // http://crbug.com/45676 + ObjcEvilDoers::ZombieEnable(YES, 10000); } - init { |