| 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 2d51aede0fa9b6e0b692df44370a539dc888bd2a..bd628f6edd8d78b79e5c7239d93fa390e57d38bf 100644
|
| --- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| +++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart
|
| @@ -34,6 +34,21 @@ class _KeyRangeFactoryProvider {
|
| [bool lowerOpen = false, bool upperOpen = false]) =>
|
| 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,
|
| +
|
| +};
|
| // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
|
|