mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
808 B
Plaintext
25 lines
808 B
Plaintext
/* vim: set shiftwidth=4 tabstop=8 autoindent cindent expandtab: */
|
|
/* 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/. */
|
|
|
|
/* interface to expose information about calls to NS_DebugBreak */
|
|
|
|
#include "nsIDebug.idl"
|
|
|
|
[scriptable, uuid(9c9307ed-480a-4f2a-8f29-21378c03bcbc)]
|
|
interface nsIDebug2 : nsIDebug
|
|
{
|
|
/**
|
|
* Whether XPCOM was compiled with DEBUG defined. This often
|
|
* correlates to whether other code (e.g., Firefox, XULRunner) was
|
|
* compiled with DEBUG defined.
|
|
*/
|
|
readonly attribute boolean isDebugBuild;
|
|
|
|
/**
|
|
* The number of assertions since process start.
|
|
*/
|
|
readonly attribute long assertionCount;
|
|
};
|