diff options
Diffstat (limited to 'xpcom/threads/nsIThreadInternal.idl')
-rw-r--r-- | xpcom/threads/nsIThreadInternal.idl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xpcom/threads/nsIThreadInternal.idl b/xpcom/threads/nsIThreadInternal.idl index ecc0f540f1..a6763e87dc 100644 --- a/xpcom/threads/nsIThreadInternal.idl +++ b/xpcom/threads/nsIThreadInternal.idl @@ -13,7 +13,7 @@ interface nsIThreadObserver; * The XPCOM thread object implements this interface, which allows a consumer * to observe dispatch activity on the thread. */ -[builtinclass, scriptable, rust_sync, uuid(a3a72e5f-71d9-4add-8f30-59a78fb6d5eb)] +[rust_sync, uuid(a3a72e5f-71d9-4add-8f30-59a78fb6d5eb)] interface nsIThreadInternal : nsIThread { /** @@ -106,5 +106,5 @@ interface nsIThreadObserver : nsISupports * |mayWait| flag was false when calling nsIThread::ProcessNextEvent(). */ void afterProcessNextEvent(in nsIThreadInternal thread, - in bool eventWasProcessed); + in boolean eventWasProcessed); }; |