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

Unified Diff: client/dom/generated/src/frog/MutationRecord.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/MutationEvent.dart ('k') | client/dom/generated/src/frog/NamedNodeMap.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/MutationRecord.dart
diff --git a/client/dom/generated/src/frog/MutationRecord.dart b/client/dom/generated/src/frog/MutationRecord.dart
index e6f62a0c68214fbf4c1c948b6e82858542f07a13..48759da772a796bf24ee035bba94ee53bf449300 100644
--- a/client/dom/generated/src/frog/MutationRecord.dart
+++ b/client/dom/generated/src/frog/MutationRecord.dart
@@ -1,23 +1,23 @@
class MutationRecord native "*MutationRecord" {
- NodeList addedNodes;
+ NodeList get addedNodes() native "return this.addedNodes;";
- String attributeName;
+ String get attributeName() native "return this.attributeName;";
- String attributeNamespace;
+ String get attributeNamespace() native "return this.attributeNamespace;";
- Node nextSibling;
+ Node get nextSibling() native "return this.nextSibling;";
- String oldValue;
+ String get oldValue() native "return this.oldValue;";
- Node previousSibling;
+ Node get previousSibling() native "return this.previousSibling;";
- NodeList removedNodes;
+ NodeList get removedNodes() native "return this.removedNodes;";
- Node target;
+ Node get target() native "return this.target;";
- String type;
+ String get type() native "return this.type;";
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/MutationEvent.dart ('k') | client/dom/generated/src/frog/NamedNodeMap.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698