| Index: third_party/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl b/third_party/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl
|
| index c336c57ee84bf7610e2aeec4b54299fda56115ce..acc5565bd5e7c763236a4aa651b65a44bd583495 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl
|
| @@ -30,17 +30,29 @@ module threads {
|
| Conditional=INDEXED_DATABASE,
|
| Supplemental=WorkerContext
|
| ] WorkerContextIndexedDatabase {
|
| - readonly attribute [V8EnabledAtRuntime] IDBFactory webkitIndexedDB;
|
| + readonly attribute [ImplementedAs=indexedDB,V8EnabledAtRuntime] IDBFactory webkitIndexedDB;
|
|
|
| - attribute [V8EnabledAtRuntime] IDBCursorConstructor webkitIDBCursor;
|
| - attribute [V8EnabledAtRuntime] IDBDatabaseConstructor webkitIDBDatabase;
|
| - attribute [V8EnabledAtRuntime] IDBDatabaseExceptionConstructor webkitIDBDatabaseException;
|
| - attribute [V8EnabledAtRuntime] IDBFactoryConstructor webkitIDBFactory;
|
| - attribute [V8EnabledAtRuntime] IDBIndexConstructor webkitIDBIndex;
|
| - attribute [V8EnabledAtRuntime] IDBKeyRangeConstructor webkitIDBKeyRange;
|
| - attribute [V8EnabledAtRuntime] IDBObjectStoreConstructor webkitIDBObjectStore;
|
| - attribute [V8EnabledAtRuntime] IDBRequestConstructor webkitIDBRequest;
|
| - attribute [V8EnabledAtRuntime] IDBTransactionConstructor webkitIDBTransaction;
|
| + attribute IDBCursorConstructor webkitIDBCursor;
|
| + attribute IDBDatabaseConstructor webkitIDBDatabase;
|
| + attribute IDBDatabaseExceptionConstructor webkitIDBDatabaseException;
|
| + attribute IDBFactoryConstructor webkitIDBFactory;
|
| + attribute IDBIndexConstructor webkitIDBIndex;
|
| + attribute IDBKeyRangeConstructor webkitIDBKeyRange;
|
| + attribute IDBObjectStoreConstructor webkitIDBObjectStore;
|
| + attribute IDBRequestConstructor webkitIDBRequest;
|
| + attribute IDBTransactionConstructor webkitIDBTransaction;
|
| +
|
| + readonly attribute [V8EnabledAtRuntime] 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;
|
| };
|
|
|
| }
|
|
|