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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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/MutationRecord.dart
diff --git a/client/dom/generated/src/frog/MutationRecord.dart b/client/dom/generated/src/frog/MutationRecord.dart
index 0c7d48511434a52ebff4f35c40b5dce191df8799..f9b8e9dd7222970f229d68debdc0f4fb0376633f 100644
--- a/client/dom/generated/src/frog/MutationRecord.dart
+++ b/client/dom/generated/src/frog/MutationRecord.dart
@@ -1,21 +1,21 @@
class _MutationRecordJs extends _DOMTypeJs implements MutationRecord native "*MutationRecord" {
- _NodeListJs get addedNodes() native "return this.addedNodes;";
+ final _NodeListJs addedNodes;
- String get attributeName() native "return this.attributeName;";
+ final String attributeName;
- String get attributeNamespace() native "return this.attributeNamespace;";
+ final String attributeNamespace;
- _NodeJs get nextSibling() native "return this.nextSibling;";
+ final _NodeJs nextSibling;
- String get oldValue() native "return this.oldValue;";
+ final String oldValue;
- _NodeJs get previousSibling() native "return this.previousSibling;";
+ final _NodeJs previousSibling;
- _NodeListJs get removedNodes() native "return this.removedNodes;";
+ final _NodeListJs removedNodes;
- _NodeJs get target() native "return this.target;";
+ final _NodeJs target;
- String get type() native "return this.type;";
+ final String type;
}

Powered by Google App Engine
This is Rietveld 408576698