| 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 16 matching lines...) Expand all Loading... |
| 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 [V8EnabledAtRuntime] IDBFactory webkitIndexedDB; |
| 34 | 34 |
| 35 attribute [V8EnabledAtRuntime] IDBCursorConstructor webkitIDBCursor; | 35 attribute [V8EnabledAtRuntime] IDBCursorConstructor webkitIDBCursor; |
| 36 attribute [V8EnabledAtRuntime] IDBDatabaseConstructor webkitIDBDatabase; | 36 attribute [V8EnabledAtRuntime] IDBDatabaseConstructor webkitIDBDatabase; |
| 37 attribute [V8EnabledAtRuntime] IDBDatabaseErrorConstructor webkitIDBData
baseError; | |
| 38 attribute [V8EnabledAtRuntime] IDBDatabaseExceptionConstructor webkitIDB
DatabaseException; | 37 attribute [V8EnabledAtRuntime] IDBDatabaseExceptionConstructor webkitIDB
DatabaseException; |
| 39 attribute [V8EnabledAtRuntime] IDBFactoryConstructor webkitIDBFactory; | 38 attribute [V8EnabledAtRuntime] IDBFactoryConstructor webkitIDBFactory; |
| 40 attribute [V8EnabledAtRuntime] IDBIndexConstructor webkitIDBIndex; | 39 attribute [V8EnabledAtRuntime] IDBIndexConstructor webkitIDBIndex; |
| 41 attribute [V8EnabledAtRuntime] IDBKeyRangeConstructor webkitIDBKeyRange; | 40 attribute [V8EnabledAtRuntime] IDBKeyRangeConstructor webkitIDBKeyRange; |
| 42 attribute [V8EnabledAtRuntime] IDBObjectStoreConstructor webkitIDBObject
Store; | 41 attribute [V8EnabledAtRuntime] IDBObjectStoreConstructor webkitIDBObject
Store; |
| 43 attribute [V8EnabledAtRuntime] IDBRequestConstructor webkitIDBRequest; | 42 attribute [V8EnabledAtRuntime] IDBRequestConstructor webkitIDBRequest; |
| 44 attribute [V8EnabledAtRuntime] IDBTransactionConstructor webkitIDBTransa
ction; | 43 attribute [V8EnabledAtRuntime] IDBTransactionConstructor webkitIDBTransa
ction; |
| 45 }; | 44 }; |
| 46 | 45 |
| 47 } | 46 } |
| OLD | NEW |