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 19 matching lines...) Expand all Loading... |
30 [DeprecateAs=PrefixedIDBCursorConstructor] attribute IDBCursorConstructor we
bkitIDBCursor; | 30 [DeprecateAs=PrefixedIDBCursorConstructor] attribute IDBCursorConstructor we
bkitIDBCursor; |
31 [DeprecateAs=PrefixedIDBDatabaseConstructor] attribute IDBDatabaseConstructo
r webkitIDBDatabase; | 31 [DeprecateAs=PrefixedIDBDatabaseConstructor] attribute IDBDatabaseConstructo
r webkitIDBDatabase; |
32 [DeprecateAs=PrefixedIDBFactoryConstructor] attribute IDBFactoryConstructor
webkitIDBFactory; | 32 [DeprecateAs=PrefixedIDBFactoryConstructor] attribute IDBFactoryConstructor
webkitIDBFactory; |
33 [DeprecateAs=PrefixedIDBIndexConstructor] attribute IDBIndexConstructor webk
itIDBIndex; | 33 [DeprecateAs=PrefixedIDBIndexConstructor] attribute IDBIndexConstructor webk
itIDBIndex; |
34 [DeprecateAs=PrefixedIDBKeyRangeConstructor] attribute IDBKeyRangeConstructo
r webkitIDBKeyRange; | 34 [DeprecateAs=PrefixedIDBKeyRangeConstructor] attribute IDBKeyRangeConstructo
r webkitIDBKeyRange; |
35 [DeprecateAs=PrefixedIDBObjectStoreConstructor] attribute IDBObjectStoreCons
tructor webkitIDBObjectStore; | 35 [DeprecateAs=PrefixedIDBObjectStoreConstructor] attribute IDBObjectStoreCons
tructor webkitIDBObjectStore; |
36 [DeprecateAs=PrefixedIDBRequestConstructor] attribute IDBRequestConstructor
webkitIDBRequest; | 36 [DeprecateAs=PrefixedIDBRequestConstructor] attribute IDBRequestConstructor
webkitIDBRequest; |
37 [DeprecateAs=PrefixedIDBTransactionConstructor] attribute IDBTransactionCons
tructor webkitIDBTransaction; | 37 [DeprecateAs=PrefixedIDBTransactionConstructor] attribute IDBTransactionCons
tructor webkitIDBTransaction; |
38 | 38 |
39 readonly attribute IDBFactory indexedDB; | 39 readonly attribute IDBFactory indexedDB; |
40 | |
41 attribute IDBCursorConstructor IDBCursor; | |
42 attribute IDBCursorWithValueConstructor IDBCursorWithValue; | |
43 attribute IDBDatabaseConstructor IDBDatabase; | |
44 attribute IDBFactoryConstructor IDBFactory; | |
45 attribute IDBIndexConstructor IDBIndex; | |
46 attribute IDBKeyRangeConstructor IDBKeyRange; | |
47 attribute IDBObjectStoreConstructor IDBObjectStore; | |
48 attribute IDBOpenDBRequestConstructor IDBOpenDBRequest; | |
49 attribute IDBRequestConstructor IDBRequest; | |
50 attribute IDBTransactionConstructor IDBTransaction; | |
51 attribute IDBVersionChangeEventConstructor IDBVersionChangeEvent; | |
52 }; | 40 }; |
OLD | NEW |