| 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 c0ac5b95a0adab8cfa6eb9476541b4b01251e2d3..e76e7d7da87302b691d3ad22dab39975bf3dde1f 100644
|
| --- a/sdk/lib/html/src/dartium_FactoryProviders.dart
|
| +++ b/sdk/lib/html/src/dartium_FactoryProviders.dart
|
| @@ -4,25 +4,6 @@
|
|
|
| part of html;
|
|
|
| -class _IDBKeyRangeFactoryProvider {
|
| -
|
| - static IDBKeyRange createIDBKeyRange_only(/*IDBKey*/ value) =>
|
| - IDBKeyRange.only_(value);
|
| -
|
| - static IDBKeyRange createIDBKeyRange_lowerBound(
|
| - /*IDBKey*/ bound, [bool open = false]) =>
|
| - IDBKeyRange.lowerBound_(bound, open);
|
| -
|
| - static IDBKeyRange createIDBKeyRange_upperBound(
|
| - /*IDBKey*/ bound, [bool open = false]) =>
|
| - IDBKeyRange.upperBound_(bound, open);
|
| -
|
| - static IDBKeyRange createIDBKeyRange_bound(
|
| - /*IDBKey*/ lower, /*IDBKey*/ upper,
|
| - [bool lowerOpen = false, bool upperOpen = false]) =>
|
| - IDBKeyRange.bound_(lower, upper, lowerOpen, upperOpen);
|
| -}
|
| -
|
| class _TypedArrayFactoryProvider {
|
| static Float32Array createFloat32Array(int length) => _F32(length);
|
| static Float32Array createFloat32Array_fromList(List<num> list) =>
|
|
|