Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(274)

Unified Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 284863002: Add type maps from blink name to html name (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use implementation name Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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.
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698