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 460b1d997a5aec14d826d30238f9535629baf27c..f0a5782ada6793a3a7f98110fda23854ebbbb708 100644 |
--- a/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart |
+++ b/sdk/lib/indexed_db/dartium/indexed_db_dartium.dart |
@@ -122,6 +122,21 @@ final indexed_dbBlinkMap = { |
}; |
+// FIXME: Can we make this private? |
+final indexed_dbBlinkFunctionMap = { |
+ 'IDBCursor': () => Cursor.internalCreateCursor, |
+ 'IDBCursorWithValue': () => CursorWithValue.internalCreateCursorWithValue, |
+ 'IDBDatabase': () => Database.internalCreateDatabase, |
+ 'IDBFactory': () => IdbFactory.internalCreateIdbFactory, |
+ 'IDBIndex': () => Index.internalCreateIndex, |
+ 'IDBKeyRange': () => KeyRange.internalCreateKeyRange, |
+ 'IDBObjectStore': () => ObjectStore.internalCreateObjectStore, |
+ 'IDBOpenDBRequest': () => OpenDBRequest.internalCreateOpenDBRequest, |
+ 'IDBRequest': () => Request.internalCreateRequest, |
+ 'IDBTransaction': () => Transaction.internalCreateTransaction, |
+ 'IDBVersionChangeEvent': () => VersionChangeEvent.internalCreateVersionChangeEvent, |
+ |
+}; |
// 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. |