| Index: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| diff --git a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| index 8d97428d03326acc6716e648e5c8c95582ff9ec3..f49e256bc2a544a884e948aebadd6f90c122c76f 100644
|
| --- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| +++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| @@ -35,18 +35,18 @@ class _KeyRangeFactoryProvider {
|
| KeyRange.bound_(lower, upper, lowerOpen, upperOpen);
|
| }
|
| // FIXME: Can we make this private?
|
| -const indexed_dbBlinkMap = const {
|
| - 'IDBCursor': Cursor,
|
| - 'IDBCursorWithValue': CursorWithValue,
|
| - 'IDBDatabase': Database,
|
| - 'IDBFactory': IdbFactory,
|
| - 'IDBIndex': Index,
|
| - 'IDBKeyRange': KeyRange,
|
| - 'IDBObjectStore': ObjectStore,
|
| - 'IDBOpenDBRequest': OpenDBRequest,
|
| - 'IDBRequest': Request,
|
| - 'IDBTransaction': Transaction,
|
| - 'IDBVersionChangeEvent': VersionChangeEvent,
|
| +final indexed_dbBlinkMap = {
|
| + 'IDBCursor': () => Cursor,
|
| + 'IDBCursorWithValue': () => CursorWithValue,
|
| + 'IDBDatabase': () => Database,
|
| + 'IDBFactory': () => IdbFactory,
|
| + 'IDBIndex': () => Index,
|
| + 'IDBKeyRange': () => KeyRange,
|
| + 'IDBObjectStore': () => ObjectStore,
|
| + 'IDBOpenDBRequest': () => OpenDBRequest,
|
| + 'IDBRequest': () => Request,
|
| + 'IDBTransaction': () => Transaction,
|
| + 'IDBVersionChangeEvent': () => VersionChangeEvent,
|
|
|
| };
|
| // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
|
|