2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-11-26 08:39:19 -08:00
|
|
|
#ifndef nsDebugImpl_h
|
|
|
|
#define nsDebugImpl_h
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIDebug.h"
|
2009-01-08 13:50:21 -08:00
|
|
|
#include "nsIDebug2.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-01-08 13:50:21 -08:00
|
|
|
class nsDebugImpl : public nsIDebug2
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2011-03-24 16:26:55 -07:00
|
|
|
nsDebugImpl() {}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIDEBUG
|
2009-01-08 13:50:21 -08:00
|
|
|
NS_DECL_NSIDEBUG2
|
2013-11-26 08:39:19 -08:00
|
|
|
|
2010-06-10 11:11:11 -07:00
|
|
|
static nsresult Create(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr);
|
2012-04-10 12:57:20 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Inform nsDebugImpl that we're in multiprocess mode.
|
|
|
|
*
|
2013-10-10 13:41:00 -07:00
|
|
|
* If aDesc is not nullptr, the string it points to must be
|
2012-04-10 12:57:20 -07:00
|
|
|
* statically-allocated (i.e., it must be a string literal).
|
|
|
|
*/
|
|
|
|
static void SetMultiprocessMode(const char *aDesc);
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define NS_DEBUG_CONTRACTID "@mozilla.org/xpcom/debug;1"
|
|
|
|
#define NS_DEBUG_CID \
|
|
|
|
{ /* a80b1fb3-aaf6-4852-b678-c27eb7a518af */ \
|
|
|
|
0xa80b1fb3, \
|
|
|
|
0xaaf6, \
|
|
|
|
0x4852, \
|
|
|
|
{0xb6, 0x78, 0xc2, 0x7e, 0xb7, 0xa5, 0x18, 0xaf} \
|
2013-11-26 08:39:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // nsDebugImpl_h
|