| Index: lib/html/src/dartium_FactoryProviders.dart
|
| diff --git a/lib/html/src/dartium_FactoryProviders.dart b/lib/html/src/dartium_FactoryProviders.dart
|
| index 447026495e20fadc282c001173340f425cbe42fa..049baf8aca36d381fb5ebf2d8b75fc3d8cf7e7fc 100644
|
| --- a/lib/html/src/dartium_FactoryProviders.dart
|
| +++ b/lib/html/src/dartium_FactoryProviders.dart
|
| @@ -6,23 +6,6 @@ class _AudioContextFactoryProvider {
|
| factory AudioContext() => _wrap(new dom.AudioContext());
|
| }
|
|
|
| -class _IDBKeyRangeFactoryProvider {
|
| -
|
| - factory IDBKeyRange.only(/*IDBKey*/ value) =>
|
| - _wrap(new dom.IDBKeyRange.only(_unwrap(value)));
|
| -
|
| - factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) =>
|
| - _wrap(new dom.IDBKeyRange.lowerBound(_unwrap(bound) open));
|
| -
|
| - factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) =>
|
| - _wrap(new dom.IDBKeyRange.upperBound(_unwrap(bound) open));
|
| -
|
| - factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
|
| - [bool lowerOpen = false, bool upperOpen = false]) =>
|
| - _wrap(new dom.IDBKeyRange.bound(_unwrap(lower), _unwrap(upper),
|
| - lowerOpen, upperOpen));
|
| -}
|
| -
|
| class _TypedArrayFactoryProvider {
|
|
|
| factory Float32Array(int length) => _F32(length);
|
|
|