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

Unified Diff: client/dom/generated/src/frog/MutationEvent.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/MutationEvent.dart
diff --git a/client/dom/generated/src/frog/MutationEvent.dart b/client/dom/generated/src/frog/MutationEvent.dart
index 6f850da9ef74a0594eb77d8d9d7bc599c179006d..71a3d84189caf4f1a3304343303fddd9e8b15eaa 100644
--- a/client/dom/generated/src/frog/MutationEvent.dart
+++ b/client/dom/generated/src/frog/MutationEvent.dart
@@ -1,5 +1,5 @@
-class MutationEvent extends Event native "*MutationEvent" {
+class MutationEventJS extends EventJS implements MutationEvent native "*MutationEvent" {
static final int ADDITION = 2;
@@ -15,7 +15,7 @@ class MutationEvent extends Event native "*MutationEvent" {
String get prevValue() native "return this.prevValue;";
- Node get relatedNode() native "return this.relatedNode;";
+ NodeJS get relatedNode() native "return this.relatedNode;";
- void initMutationEvent(String type, bool canBubble, bool cancelable, Node relatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
+ void initMutationEvent(String type, bool canBubble, bool cancelable, NodeJS relatedNode, String prevValue, String newValue, String attrName, int attrChange) native;
}
« no previous file with comments | « client/dom/generated/src/frog/MutationCallback.dart ('k') | client/dom/generated/src/frog/MutationRecord.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698