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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x Created 8 years, 11 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 MessageEventJS extends EventJS implements MessageEvent native "*MessageEve nt" { 2 class MessageEventJs extends EventJs implements MessageEvent native "*MessageEve nt" {
3 3
4 Object get data() native "return this.data;"; 4 Object get data() native "return this.data;";
5 5
6 String get lastEventId() native "return this.lastEventId;"; 6 String get lastEventId() native "return this.lastEventId;";
7 7
8 String get origin() native "return this.origin;"; 8 String get origin() native "return this.origin;";
9 9
10 List get ports() native "return this.ports;"; 10 List get ports() native "return this.ports;";
11 11
12 DOMWindowJS get source() native "return this.source;"; 12 DOMWindowJs get source() native "return this.source;";
13 13
14 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, DOMWindowJS sourceArg, L ist messagePorts) native; 14 void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, O bject dataArg, String originArg, String lastEventIdArg, DOMWindowJs sourceArg, L ist messagePorts) native;
15 15
16 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindowJS source Arg, List transferables) native; 16 void webkitInitMessageEvent(String typeArg, bool canBubbleArg, bool cancelable Arg, Object dataArg, String originArg, String lastEventIdArg, DOMWindowJs source Arg, List transferables) native;
17 } 17 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/MessageChannel.dart ('k') | client/dom/generated/src/frog/MessagePort.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698