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

Unified Diff: lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart

Issue 11365019: Merging dart:html interfaces and implementations (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Adding generated files. Created 8 years, 1 month 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
Index: lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
diff --git a/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart b/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
index 71e9e38d0f9e54600d854dcba3411afad4dde826..d962f6d3cfa10eb68b760d2e6a6b539b815bdf9e 100644
--- a/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
+++ b/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
@@ -34,16 +34,16 @@ class _IDBKeyRangeFactoryProvider {
static _translateKey(idbkey) => idbkey; // TODO: fixme.
- static _IDBKeyRangeImpl _only(cls, value) =>
- JS('_IDBKeyRangeImpl', '#.only(#)', cls, value);
+ static IDBKeyRange _only(cls, value) =>
+ JS('IDBKeyRange', '#.only(#)', cls, value);
- static _IDBKeyRangeImpl _lowerBound(cls, bound, open) =>
- JS('_IDBKeyRangeImpl', '#.lowerBound(#, #)', cls, bound, open);
+ static IDBKeyRange _lowerBound(cls, bound, open) =>
+ JS('IDBKeyRange', '#.lowerBound(#, #)', cls, bound, open);
- static _IDBKeyRangeImpl _upperBound(cls, bound, open) =>
- JS('_IDBKeyRangeImpl', '#.upperBound(#, #)', cls, bound, open);
+ static IDBKeyRange _upperBound(cls, bound, open) =>
+ JS('IDBKeyRange', '#.upperBound(#, #)', cls, bound, open);
- static _IDBKeyRangeImpl _bound(cls, lower, upper, lowerOpen, upperOpen) =>
- JS('_IDBKeyRangeImpl', '#.bound(#, #, #, #)',
+ static IDBKeyRange _bound(cls, lower, upper, lowerOpen, upperOpen) =>
+ JS('IDBKeyRange', '#.bound(#, #, #, #)',
cls, lower, upper, lowerOpen, upperOpen);
}

Powered by Google App Engine
This is Rietveld 408576698