Bug 976350 patch 2: Rename nsTraceRefcntImpl to nsTraceRefcnt. r=bsmedberg

Now that bug 975295 removed the obsolete wrapper class, we can rename
nsTraceRefcntImpl back to its correct pre-XPCOM-glue name,
nsTraceRefcnt.

The best part is that the one place where indentation should have needed
fixing, nsTraceRefcnt::DemangleSymbol, never had its indentation fixed
for the previous renaming.
This commit is contained in:
L. David Baron
2014-02-26 13:36:36 -08:00
parent eccc6c3bd1
commit dba3efaa58
15 changed files with 65 additions and 65 deletions

View File

@@ -30,7 +30,7 @@
#include <stdlib.h>
#endif
#include "nsTraceRefcntImpl.h"
#include "nsTraceRefcnt.h"
#if defined(XP_UNIX)
#include <signal.h>
@@ -373,7 +373,7 @@ NS_DebugBreak(uint32_t aSeverity, const char *aStr, const char *aExpr,
RealBreak();
#endif
#ifdef DEBUG
nsTraceRefcntImpl::WalkTheStack(stderr);
nsTraceRefcnt::WalkTheStack(stderr);
#endif
Abort(buf.buffer);
return;
@@ -397,11 +397,11 @@ NS_DebugBreak(uint32_t aSeverity, const char *aStr, const char *aExpr,
return;
case NS_ASSERT_STACK:
nsTraceRefcntImpl::WalkTheStack(stderr);
nsTraceRefcnt::WalkTheStack(stderr);
return;
case NS_ASSERT_STACK_AND_ABORT:
nsTraceRefcntImpl::WalkTheStack(stderr);
nsTraceRefcnt::WalkTheStack(stderr);
// Fall through to abort
case NS_ASSERT_ABORT: