| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 12 matching lines...) Expand all Loading... |
| 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 |
| 27 module threads { | 27 module threads { |
| 28 | 28 |
| 29 interface [ | 29 interface [ |
| 30 Conditional=INDEXED_DATABASE, | 30 Conditional=INDEXED_DATABASE, |
| 31 Supplemental=WorkerContext | 31 Supplemental=WorkerContext |
| 32 ] WorkerContextIndexedDatabase { | 32 ] WorkerContextIndexedDatabase { |
| 33 readonly attribute [V8EnabledAtRuntime] IDBFactory webkitIndexedDB; | 33 readonly attribute [ImplementedAs=indexedDB,V8EnabledAtRuntime] IDBFacto
ry webkitIndexedDB; |
| 34 | 34 |
| 35 attribute [V8EnabledAtRuntime] IDBCursorConstructor webkitIDBCursor; | 35 attribute IDBCursorConstructor webkitIDBCursor; |
| 36 attribute [V8EnabledAtRuntime] IDBDatabaseConstructor webkitIDBDatabase; | 36 attribute IDBDatabaseConstructor webkitIDBDatabase; |
| 37 attribute [V8EnabledAtRuntime] IDBDatabaseExceptionConstructor webkitIDB
DatabaseException; | 37 attribute IDBDatabaseExceptionConstructor webkitIDBDatabaseException; |
| 38 attribute [V8EnabledAtRuntime] IDBFactoryConstructor webkitIDBFactory; | 38 attribute IDBFactoryConstructor webkitIDBFactory; |
| 39 attribute [V8EnabledAtRuntime] IDBIndexConstructor webkitIDBIndex; | 39 attribute IDBIndexConstructor webkitIDBIndex; |
| 40 attribute [V8EnabledAtRuntime] IDBKeyRangeConstructor webkitIDBKeyRange; | 40 attribute IDBKeyRangeConstructor webkitIDBKeyRange; |
| 41 attribute [V8EnabledAtRuntime] IDBObjectStoreConstructor webkitIDBObject
Store; | 41 attribute IDBObjectStoreConstructor webkitIDBObjectStore; |
| 42 attribute [V8EnabledAtRuntime] IDBRequestConstructor webkitIDBRequest; | 42 attribute IDBRequestConstructor webkitIDBRequest; |
| 43 attribute [V8EnabledAtRuntime] IDBTransactionConstructor webkitIDBTransa
ction; | 43 attribute IDBTransactionConstructor webkitIDBTransaction; |
| 44 |
| 45 readonly attribute [V8EnabledAtRuntime] IDBFactory indexedDB; |
| 46 |
| 47 attribute IDBCursorConstructor IDBCursor; |
| 48 attribute IDBDatabaseConstructor IDBDatabase; |
| 49 attribute IDBDatabaseExceptionConstructor IDBDatabaseException; |
| 50 attribute IDBFactoryConstructor IDBFactory; |
| 51 attribute IDBIndexConstructor IDBIndex; |
| 52 attribute IDBKeyRangeConstructor IDBKeyRange; |
| 53 attribute IDBObjectStoreConstructor IDBObjectStore; |
| 54 attribute IDBRequestConstructor IDBRequest; |
| 55 attribute IDBTransactionConstructor IDBTransaction; |
| 44 }; | 56 }; |
| 45 | 57 |
| 46 } | 58 } |
| OLD | NEW |