272
edits
m (→Interfaces) |
|||
| Line 2: | Line 2: | ||
== Interfaces == | == Interfaces == | ||
=== nsIThreadManager === | |||
[scriptable, uuid(...)] | [scriptable, uuid(...)] | ||
interface nsIThreadManager : nsISupports { | interface nsIThreadManager : nsISupports { | ||
| Line 52: | Line 52: | ||
nsIThread setCurrentThread(in nsIThread thread); | nsIThread setCurrentThread(in nsIThread thread); | ||
}; | }; | ||
=== nsIEventTarget === | |||
[scriptable, uuid(...)] | [scriptable, uuid(...)] | ||
interface nsIEventTarget : nsISupports { | interface nsIEventTarget : nsISupports { | ||
| Line 73: | Line 73: | ||
boolean isOnCurrentThread(); | boolean isOnCurrentThread(); | ||
}; | }; | ||
=== nsIThread === | |||
[scriptable, uuid(...)] | [scriptable, uuid(...)] | ||
interface nsIThread : nsIEventTarget { | interface nsIThread : nsIEventTarget { | ||
| Line 109: | Line 109: | ||
void processNextEvent(); | void processNextEvent(); | ||
}; | }; | ||
=== nsIThreadInternal === | |||
[scriptable, uuid(...)] | [scriptable, uuid(...)] | ||
interface nsIThreadInternal : nsIThread { | interface nsIThreadInternal : nsIThread { | ||
| Line 117: | Line 117: | ||
attribute nsIThreadObserver observer; | attribute nsIThreadObserver observer; | ||
}; | }; | ||
=== nsIThreadObserver === | |||
[scriptable, uuid(...)] | [scriptable, uuid(...)] | ||
interface nsIThreadObserver : nsISupports { | interface nsIThreadObserver : nsISupports { | ||
edits