2012-05-21 11:12:37 +00: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/. */
|
2003-07-07 22:11:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2003-08-05 05:29:10 +00:00
|
|
|
/**
|
2009-08-26 16:28:11 +00:00
|
|
|
* For use by consumers in scripted languages (JavaScript, Java, Python,
|
|
|
|
* Perl, ...).
|
|
|
|
*
|
|
|
|
* @note C/C++ consumers who are planning to use the nsIDebug interface with
|
|
|
|
* the "@mozilla.org/xpcom;1" contract should use NS_DebugBreak from xpcom
|
|
|
|
* glue instead.
|
|
|
|
*
|
2003-07-07 22:11:36 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
[scriptable, uuid(3bf0c3d7-3bd9-4cf2-a971-33572c503e1e)]
|
|
|
|
interface nsIDebug : nsISupports
|
|
|
|
{
|
2009-08-26 16:28:11 +00:00
|
|
|
/**
|
|
|
|
* Show an assertion and trigger nsIDebug.break().
|
|
|
|
*
|
|
|
|
* @param aStr assertion message
|
|
|
|
* @param aExpr expression that failed
|
|
|
|
* @param aFile file containing assertion
|
|
|
|
* @param aLine line number of assertion
|
|
|
|
*
|
|
|
|
*/
|
2003-07-07 22:11:36 +00:00
|
|
|
void assertion(in string aStr,
|
|
|
|
in string aExpr,
|
|
|
|
in string aFile,
|
|
|
|
in long aLine);
|
|
|
|
|
2009-08-26 16:28:11 +00:00
|
|
|
/**
|
|
|
|
* Show a warning.
|
|
|
|
*
|
|
|
|
* @param aStr warning message
|
|
|
|
* @param aFile file containing assertion
|
|
|
|
* @param aLine line number of assertion
|
|
|
|
*/
|
2003-07-07 22:11:36 +00:00
|
|
|
void warning(in string aStr,
|
|
|
|
in string aFile,
|
|
|
|
in long aLine);
|
2009-08-26 16:28:11 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Request to break into a debugger.
|
|
|
|
*
|
|
|
|
* @param aFile file containing break request
|
|
|
|
* @param aLine line number of break request
|
|
|
|
*/
|
2003-07-07 22:11:36 +00:00
|
|
|
void break(in string aFile,
|
|
|
|
in long aLine);
|
|
|
|
|
2009-08-26 16:28:11 +00:00
|
|
|
/**
|
|
|
|
* Request the process to trigger a fatal abort.
|
|
|
|
*
|
|
|
|
* @param aFile file containing abort request
|
|
|
|
* @param aLine line number of abort request
|
|
|
|
*/
|
2003-07-07 22:11:36 +00:00
|
|
|
void abort(in string aFile,
|
|
|
|
in long aLine);
|
|
|
|
};
|
|
|
|
|