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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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 MutationEvent extends Event native "*MutationEvent" { 2 class MutationEvent extends Event native "*MutationEvent" {
3 3
4 static final int ADDITION = 2;
5
6 static final int MODIFICATION = 1;
7
8 static final int REMOVAL = 3;
9
4 int attrChange; 10 int attrChange;
5 11
6 String attrName; 12 String attrName;
7 13
8 String newValue; 14 String newValue;
9 15
10 String prevValue; 16 String prevValue;
11 17
12 Node relatedNode; 18 Node relatedNode;
13 19
14 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive; 20 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) nat ive;
15 } 21 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/MediaError.dart ('k') | client/dom/generated/src/frog/NavigatorUserMediaError.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698