| Index: lib/html/dartium/html_dartium.dart
|
| diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
|
| index cd835f90f579d4cd3d7563de51b971ab145b2dbf..445e12df8c30dfb6d660d22033979afe496212a9 100644
|
| --- a/lib/html/dartium/html_dartium.dart
|
| +++ b/lib/html/dartium/html_dartium.dart
|
| @@ -10499,6 +10499,12 @@ class _DOMTokenListImpl extends NativeFieldWrapperClass1 implements DOMTokenList
|
| abstract class DOMURL {
|
|
|
| factory DOMURL() => _DOMURLFactoryProvider.createDOMURL();
|
| +
|
| + /** @domName DOMURL.createObjectURL */
|
| + static final createObjectURL = _DOMURLImpl.createObjectURL;
|
| +
|
| + /** @domName DOMURL.revokeObjectURL */
|
| + static final revokeObjectURL = _DOMURLImpl.revokeObjectURL;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -17879,6 +17885,18 @@ abstract class IDBKeyRange {
|
|
|
| /** @domName IDBKeyRange.upperOpen */
|
| abstract bool get upperOpen;
|
| +
|
| + /** @domName IDBKeyRange.bound */
|
| + static final bound = _IDBKeyRangeImpl.bound;
|
| +
|
| + /** @domName IDBKeyRange.lowerBound */
|
| + static final lowerBound = _IDBKeyRangeImpl.lowerBound;
|
| +
|
| + /** @domName IDBKeyRange.only */
|
| + static final only = _IDBKeyRangeImpl.only;
|
| +
|
| + /** @domName IDBKeyRange.upperBound */
|
| + static final upperBound = _IDBKeyRangeImpl.upperBound;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -23470,6 +23488,9 @@ abstract class Notification implements EventTarget {
|
| /** @domName Notification.removeEventListener */
|
| void $dom_removeEventListener(String type, EventListener listener, [bool useCapture]);
|
|
|
| + /** @domName Notification.requestPermission */
|
| + static final requestPermission = _NotificationImpl.requestPermission;
|
| +
|
| /** @domName Notification.show */
|
| void show();
|
| }
|
|
|