mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
b35b6dc0c0
--HG-- extra : rebase_source : 4684665d9c32a76ad7fffdf9e305b5b617fca58c
18 lines
382 B
Plaintext
18 lines
382 B
Plaintext
#include "nsISupports.idl"
|
|
|
|
interface nsILocalFile;
|
|
|
|
[scriptable, uuid(95464a04-6949-46cb-b621-d167790704a0)]
|
|
interface nsITestCrasher : nsISupports
|
|
{
|
|
void crash();
|
|
|
|
/**
|
|
* Lock a directory using XRE_LockProfileDirectory.
|
|
*
|
|
* @param directory The directory to lock
|
|
* @return An opaque lock object.
|
|
*/
|
|
nsISupports lockDir(in nsILocalFile directory);
|
|
};
|