| Index: sdk/lib/html/src/dartium_FactoryProviders.dart
|
| diff --git a/sdk/lib/html/src/dartium_FactoryProviders.dart b/sdk/lib/html/src/dartium_FactoryProviders.dart
|
| index f31947a26d34900b83d056b397ba6c735471497a..0678689616adb14b7725447797209f93f0e37812 100644
|
| --- a/sdk/lib/html/src/dartium_FactoryProviders.dart
|
| +++ b/sdk/lib/html/src/dartium_FactoryProviders.dart
|
| @@ -13,20 +13,20 @@ class _AudioContextFactoryProvider {
|
| class _IDBKeyRangeFactoryProvider {
|
|
|
| static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
|
| - _IDBKeyRangeImpl.only_(value);
|
| + IDBKeyRange.only_(value);
|
|
|
| static IDBKeyRange createIDBKeyRange_lowerBound(
|
| /*IDBKey*/ bound, [bool open = false]) =>
|
| - _IDBKeyRangeImpl.lowerBound_(bound, open);
|
| + IDBKeyRange.lowerBound_(bound, open);
|
|
|
| static IDBKeyRange createIDBKeyRange_upperBound(
|
| /*IDBKey*/ bound, [bool open = false]) =>
|
| - _IDBKeyRangeImpl.upperBound_(bound, open);
|
| + IDBKeyRange.upperBound_(bound, open);
|
|
|
| static IDBKeyRange createIDBKeyRange_bound(
|
| /*IDBKey*/ lower, /*IDBKey*/ upper,
|
| [bool lowerOpen = false, bool upperOpen = false]) =>
|
| - _IDBKeyRangeImpl.bound_(lower, upper, lowerOpen, upperOpen);
|
| + IDBKeyRange.bound_(lower, upper, lowerOpen, upperOpen);
|
| }
|
|
|
| class _TypedArrayFactoryProvider {
|
| @@ -108,5 +108,5 @@ class _WebSocketFactoryProvider {
|
| }
|
|
|
| class _TextFactoryProvider {
|
| - static Text createText(String data) => _document.$dom_createTextNode(data);
|
| + static Text createText(String data) => document.$dom_createTextNode(data);
|
| }
|
|
|