| Index: third_party/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl b/third_party/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl
|
| index ad3998b49d76b9bd3e8fed756aa87867118be9be..a290b73009e6bcb1dac1f55bd9f7dc0882f6ca15 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl
|
| @@ -30,7 +30,7 @@ module window {
|
| Conditional=INDEXED_DATABASE,
|
| Supplemental=DOMWindow
|
| ] DOMWindowIndexedDatabase {
|
| - readonly attribute IDBFactory webkitIndexedDB;
|
| + readonly attribute [ImplementedAs=indexedDB,V8MeasureAs=PrefixedIndexedDB] IDBFactory webkitIndexedDB;
|
|
|
| attribute IDBCursorConstructor webkitIDBCursor;
|
| attribute IDBDatabaseConstructor webkitIDBDatabase;
|
| @@ -41,6 +41,18 @@ module window {
|
| attribute IDBObjectStoreConstructor webkitIDBObjectStore;
|
| attribute IDBRequestConstructor webkitIDBRequest;
|
| attribute IDBTransactionConstructor webkitIDBTransaction;
|
| +
|
| + readonly attribute [V8MeasureAs=UnprefixedIndexedDB] IDBFactory indexedDB;
|
| +
|
| + attribute IDBCursorConstructor IDBCursor;
|
| + attribute IDBDatabaseConstructor IDBDatabase;
|
| + attribute IDBDatabaseExceptionConstructor IDBDatabaseException;
|
| + attribute IDBFactoryConstructor IDBFactory;
|
| + attribute IDBIndexConstructor IDBIndex;
|
| + attribute IDBKeyRangeConstructor IDBKeyRange;
|
| + attribute IDBObjectStoreConstructor IDBObjectStore;
|
| + attribute IDBRequestConstructor IDBRequest;
|
| + attribute IDBTransactionConstructor IDBTransaction;
|
| };
|
|
|
| }
|
|
|