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

Unified Diff: sdk/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: Fixing merged classes in dartium not compiling under dartc. 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
« no previous file with comments | « sdk/lib/html/src/dart2js_DOMImplementation.dart ('k') | sdk/lib/html/src/dartium_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
diff --git a/sdk/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart b/sdk/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
index 71e9e38d0f9e54600d854dcba3411afad4dde826..d962f6d3cfa10eb68b760d2e6a6b539b815bdf9e 100644
--- a/sdk/lib/html/src/dart2js_IDBKeyRangeFactoryProvider.dart
+++ b/sdk/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);
}
« no previous file with comments | « sdk/lib/html/src/dart2js_DOMImplementation.dart ('k') | sdk/lib/html/src/dartium_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698