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

Side by Side Diff: client/html/generated/html/dartium/MutationEvent.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, 9 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
(Empty)
1
2 class _MutationEventImpl extends _EventImpl implements MutationEvent {
3 _MutationEventImpl._wrap(ptr) : super._wrap(ptr);
4
5 int get attrChange() => _wrap(_ptr.attrChange);
6
7 String get attrName() => _wrap(_ptr.attrName);
8
9 String get newValue() => _wrap(_ptr.newValue);
10
11 String get prevValue() => _wrap(_ptr.prevValue);
12
13 Node get relatedNode() => _wrap(_ptr.relatedNode);
14
15 void initMutationEvent(String type, bool canBubble, bool cancelable, Node rela tedNode, String prevValue, String newValue, String attrName, int attrChange) {
16 _ptr.initMutationEvent(_unwrap(type), _unwrap(canBubble), _unwrap(cancelable ), _unwrap(relatedNode), _unwrap(prevValue), _unwrap(newValue), _unwrap(attrName ), _unwrap(attrChange));
17 return;
18 }
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698