|
Lines 20-26
Source/WebCore/workers/WorkerContext.idl_sec1
|
| 20 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
20 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 21 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
21 |
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
22 |
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 23 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
23 |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 |
* |
24 |
* |
| 25 |
*/ |
25 |
*/ |
| 26 |
|
26 |
|
|
Lines 67-77
module threads {
Source/WebCore/workers/WorkerContext.idl_sec2
|
| 67 |
|
67 |
|
| 68 |
|
68 |
|
| 69 |
// EventTarget interface |
69 |
// EventTarget interface |
| 70 |
void addEventListener(in DOMString type, |
70 |
void addEventListener(in DOMString type, |
| 71 |
in EventListener listener, |
71 |
in EventListener listener, |
| 72 |
in [Optional] boolean useCapture); |
72 |
in [Optional] boolean useCapture); |
| 73 |
void removeEventListener(in DOMString type, |
73 |
void removeEventListener(in DOMString type, |
| 74 |
in EventListener listener, |
74 |
in EventListener listener, |
| 75 |
in [Optional] boolean useCapture); |
75 |
in [Optional] boolean useCapture); |
| 76 |
boolean dispatchEvent(in Event evt) |
76 |
boolean dispatchEvent(in Event evt) |
| 77 |
raises(EventException); |
77 |
raises(EventException); |
|
Lines 127-146
module threads {
Source/WebCore/workers/WorkerContext.idl_sec3
|
| 127 |
attribute Float32ArrayConstructor Float32Array; // Usable with new operator |
127 |
attribute Float32ArrayConstructor Float32Array; // Usable with new operator |
| 128 |
attribute Float64ArrayConstructor Float64Array; // Usable with new operator |
128 |
attribute Float64ArrayConstructor Float64Array; // Usable with new operator |
| 129 |
attribute DataViewConstructor DataView; // Usable with new operator |
129 |
attribute DataViewConstructor DataView; // Usable with new operator |
| 130 |
#if defined(ENABLE_INDEXED_DATABASE) && ENABLE_INDEXED_DATABASE |
|
|
| 131 |
readonly attribute [V8EnabledAtRuntime] IDBFactory webkitIndexedDB; |
| 132 |
|
| 133 |
attribute [V8EnabledAtRuntime] IDBCursorConstructor webkitIDBCursor; |
| 134 |
attribute [V8EnabledAtRuntime] IDBDatabaseConstructor webkitIDBDatabase; |
| 135 |
attribute [V8EnabledAtRuntime] IDBDatabaseErrorConstructor webkitIDBDatabaseError; |
| 136 |
attribute [V8EnabledAtRuntime] IDBDatabaseExceptionConstructor webkitIDBDatabaseException; |
| 137 |
attribute [V8EnabledAtRuntime] IDBFactoryConstructor webkitIDBFactory; |
| 138 |
attribute [V8EnabledAtRuntime] IDBIndexConstructor webkitIDBIndex; |
| 139 |
attribute [V8EnabledAtRuntime] IDBKeyRangeConstructor webkitIDBKeyRange; |
| 140 |
attribute [V8EnabledAtRuntime] IDBObjectStoreConstructor webkitIDBObjectStore; |
| 141 |
attribute [V8EnabledAtRuntime] IDBRequestConstructor webkitIDBRequest; |
| 142 |
attribute [V8EnabledAtRuntime] IDBTransactionConstructor webkitIDBTransaction; |
| 143 |
#endif |
| 144 |
}; |
130 |
}; |
| 145 |
|
131 |
|
| 146 |
} |
132 |
} |