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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 10963057: Emit static IDL members. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/systembase.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/systembase.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698