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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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
« no previous file with comments | « client/dom/generated/src/frog/MouseEvent.dart ('k') | client/dom/generated/src/frog/MutationRecord.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c7014dc8032d6ef4e1004b417f1b5e32ce22384c..6f850da9ef74a0594eb77d8d9d7bc599c179006d 100644
--- a/client/dom/generated/src/frog/MutationEvent.dart
+++ b/client/dom/generated/src/frog/MutationEvent.dart
@@ -7,15 +7,15 @@ class MutationEvent extends Event native "*MutationEvent" {
static final int REMOVAL = 3;
- int attrChange;
+ int get attrChange() native "return this.attrChange;";
- String attrName;
+ String get attrName() native "return this.attrName;";
- String newValue;
+ String get newValue() native "return this.newValue;";
- String prevValue;
+ String get prevValue() native "return this.prevValue;";
- Node relatedNode;
+ Node 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;
}
« no previous file with comments | « client/dom/generated/src/frog/MouseEvent.dart ('k') | client/dom/generated/src/frog/MutationRecord.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698