From 5ddbf1ce50b4686179a5c248112c2dca1f46f301 Mon Sep 17 00:00:00 2001 From: "rsesek@chromium.org" Date: Thu, 29 Aug 2013 01:59:38 +0000 Subject: Rename base::debug::StackTrace::PrintBacktrace() to Print(). The inconsistency in naming and capitalization are annoying, and the name can be shortened. This is most commonly used like so: base::debug::StackTrace().PrintBacktrace(); With this change, the usage becomes: base::debug::StackTrace().Print(); TBR=darin@chromium.org Review URL: https://chromiumcodereview.appspot.com/23155005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220163 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/common/mac/objc_zombie.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chrome/common/mac') diff --git a/chrome/common/mac/objc_zombie.mm b/chrome/common/mac/objc_zombie.mm index 8f64840..ab62cae 100644 --- a/chrome/common/mac/objc_zombie.mm +++ b/chrome/common/mac/objc_zombie.mm @@ -175,7 +175,7 @@ BOOL GetZombieRecord(id object, ZombieRecord* record) { // easy to use DCHECK to dump only in debug builds. BOOL DumpDeallocTrace(const void* const* array, int size) { fprintf(stderr, "Backtrace from -dealloc:\n"); - base::debug::StackTrace(array, size).PrintBacktrace(); + base::debug::StackTrace(array, size).Print(); return YES; } -- cgit v1.1