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

Side by Side Diff: client/dom/generated/src/frog/Node.dart

Issue 9381030: Let EventTarget be a base class in the frog dom. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: EventsTest passes 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _NodeJs extends _DOMTypeJs implements Node native "*Node" { 2 class _NodeJs extends _EventTargetJs implements Node native "*Node" {
3 3
4 static final int ATTRIBUTE_NODE = 2; 4 static final int ATTRIBUTE_NODE = 2;
5 5
6 static final int CDATA_SECTION_NODE = 4; 6 static final int CDATA_SECTION_NODE = 4;
7 7
8 static final int COMMENT_NODE = 8; 8 static final int COMMENT_NODE = 8;
9 9
10 static final int DOCUMENT_FRAGMENT_NODE = 11; 10 static final int DOCUMENT_FRAGMENT_NODE = 11;
11 11
12 static final int DOCUMENT_NODE = 9; 12 static final int DOCUMENT_NODE = 9;
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 String lookupPrefix(String namespaceURI) native; 102 String lookupPrefix(String namespaceURI) native;
103 103
104 void normalize() native; 104 void normalize() native;
105 105
106 _NodeJs removeChild(_NodeJs oldChild) native; 106 _NodeJs removeChild(_NodeJs oldChild) native;
107 107
108 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native; 108 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
109 109
110 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native; 110 _NodeJs replaceChild(_NodeJs newChild, _NodeJs oldChild) native;
111 } 111 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/MessagePort.dart ('k') | client/dom/generated/src/frog/Notification.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698