Bug 1054638 - Bustage fix for non-DEBUG builds on CLOSED TREE

This commit is contained in:
Ben Turner 2014-12-10 20:54:24 -08:00
parent fa00b94736
commit 3be9ad559b
3 changed files with 0 additions and 10 deletions

View File

@ -1709,8 +1709,6 @@ private:
}
};
#ifdef DEBUG
PRThread*
PRThreadFromThread(nsIThread* aThread)
{
@ -1723,8 +1721,6 @@ PRThreadFromThread(nsIThread* aThread)
return result;
}
#endif // DEBUG
} /* anonymous namespace */
NS_IMPL_ISUPPORTS_INHERITED0(MainThreadReleaseRunnable, nsRunnable)

View File

@ -30,8 +30,6 @@ const uint32_t kWorkerStackSize = 256 * sizeof(size_t) * 1024;
} // anonymous namespace
#ifdef NS_BUILD_REFCNT_LOGGING
WorkerThreadFriendKey::WorkerThreadFriendKey()
{
MOZ_COUNT_CTOR(WorkerThreadFriendKey);
@ -42,8 +40,6 @@ WorkerThreadFriendKey::~WorkerThreadFriendKey()
MOZ_COUNT_DTOR(WorkerThreadFriendKey);
}
#endif
class WorkerThread::Observer MOZ_FINAL
: public nsIThreadObserver
{

View File

@ -34,10 +34,8 @@ class WorkerThreadFriendKey
friend class WorkerPrivate;
friend class WorkerPrivateParent<WorkerPrivate>;
#ifdef NS_BUILD_REFCNT_LOGGING
WorkerThreadFriendKey();
~WorkerThreadFriendKey();
#endif
};
class WorkerThread MOZ_FINAL