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

Unified Diff: client/html/generated/html/dartium/DOMApplicationCache.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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:
View side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/DOMApplicationCache.dart
diff --git a/client/html/generated/html/dartium/DOMApplicationCache.dart b/client/html/generated/html/dartium/DOMApplicationCache.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c8ef61020a47a6697a26d2e6e5f5d0916579a06f
--- /dev/null
+++ b/client/html/generated/html/dartium/DOMApplicationCache.dart
@@ -0,0 +1,70 @@
+
+class _DOMApplicationCacheImpl extends _EventTargetImpl implements DOMApplicationCache {
+ _DOMApplicationCacheImpl._wrap(ptr) : super._wrap(ptr);
+
+ int get status() => _wrap(_ptr.status);
+
+ _DOMApplicationCacheEventsImpl get on() {
+ if (_on == null) _on = new _DOMApplicationCacheEventsImpl(this);
+ return _on;
+ }
+
+ void abort() {
+ _ptr.abort();
+ return;
+ }
+
+ void _addEventListener(String type, EventListener listener, [bool useCapture = null]) {
+ if (useCapture === null) {
+ _ptr.addEventListener(_unwrap(type), _unwrap(listener));
+ return;
+ } else {
+ _ptr.addEventListener(_unwrap(type), _unwrap(listener), _unwrap(useCapture));
+ return;
+ }
+ }
+
+ bool _dispatchEvent(Event evt) {
+ return _wrap(_ptr.dispatchEvent(_unwrap(evt)));
+ }
+
+ void _removeEventListener(String type, EventListener listener, [bool useCapture = null]) {
+ if (useCapture === null) {
+ _ptr.removeEventListener(_unwrap(type), _unwrap(listener));
+ return;
+ } else {
+ _ptr.removeEventListener(_unwrap(type), _unwrap(listener), _unwrap(useCapture));
+ return;
+ }
+ }
+
+ void swapCache() {
+ _ptr.swapCache();
+ return;
+ }
+
+ void update() {
+ _ptr.update();
+ return;
+ }
+}
+
+class _DOMApplicationCacheEventsImpl extends _EventsImpl implements DOMApplicationCacheEvents {
+ _DOMApplicationCacheEventsImpl(_ptr) : super(_ptr);
+
+ EventListenerList get cached() => _get('cached');
+
+ EventListenerList get checking() => _get('checking');
+
+ EventListenerList get downloading() => _get('downloading');
+
+ EventListenerList get error() => _get('error');
+
+ EventListenerList get noUpdate() => _get('noupdate');
+
+ EventListenerList get obsolete() => _get('obsolete');
+
+ EventListenerList get progress() => _get('progress');
+
+ EventListenerList get updateReady() => _get('updateready');
+}

Powered by Google App Engine
This is Rietveld 408576698