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

Unified 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, 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/MutationEvent.dart
diff --git a/client/html/generated/html/dartium/MutationEvent.dart b/client/html/generated/html/dartium/MutationEvent.dart
new file mode 100644
index 0000000000000000000000000000000000000000..93d8d6ecdb64dd146ed57fa9770ba1b2a10c9cf2
--- /dev/null
+++ b/client/html/generated/html/dartium/MutationEvent.dart
@@ -0,0 +1,19 @@
+
+class _MutationEventImpl extends _EventImpl implements MutationEvent {
+ _MutationEventImpl._wrap(ptr) : super._wrap(ptr);
+
+ int get attrChange() => _wrap(_ptr.attrChange);
+
+ String get attrName() => _wrap(_ptr.attrName);
+
+ String get newValue() => _wrap(_ptr.newValue);
+
+ String get prevValue() => _wrap(_ptr.prevValue);
+
+ Node get relatedNode() => _wrap(_ptr.relatedNode);
+
+ void initMutationEvent(String type, bool canBubble, bool cancelable, Node relatedNode, String prevValue, String newValue, String attrName, int attrChange) {
+ _ptr.initMutationEvent(_unwrap(type), _unwrap(canBubble), _unwrap(cancelable), _unwrap(relatedNode), _unwrap(prevValue), _unwrap(newValue), _unwrap(attrName), _unwrap(attrChange));
+ return;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698