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

Unified Diff: client/dom/generated/src/wrapping/_MutationRecordWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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/wrapping/_MutationRecordWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_MutationRecordWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MutationRecordWrappingImplementation.dart
index f3c815564d34a3f5ca07d26bcd2122280956c009..26a28265297cacde1246a2eabde5970fdb355637 100644
--- a/client/dom/generated/src/wrapping/_MutationRecordWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_MutationRecordWrappingImplementation.dart
@@ -11,32 +11,32 @@ class _MutationRecordWrappingImplementation extends DOMWrapperBase implements Mu
return new _MutationRecordWrappingImplementation();
}
- NodeList get addedNodes() { return _get__MutationRecord_addedNodes(this); }
- static NodeList _get__MutationRecord_addedNodes(var _this) native;
+ NodeList get addedNodes() { return _get_addedNodes(this); }
+ static NodeList _get_addedNodes(var _this) native;
- String get attributeName() { return _get__MutationRecord_attributeName(this); }
- static String _get__MutationRecord_attributeName(var _this) native;
+ String get attributeName() { return _get_attributeName(this); }
+ static String _get_attributeName(var _this) native;
- String get attributeNamespace() { return _get__MutationRecord_attributeNamespace(this); }
- static String _get__MutationRecord_attributeNamespace(var _this) native;
+ String get attributeNamespace() { return _get_attributeNamespace(this); }
+ static String _get_attributeNamespace(var _this) native;
- Node get nextSibling() { return _get__MutationRecord_nextSibling(this); }
- static Node _get__MutationRecord_nextSibling(var _this) native;
+ Node get nextSibling() { return _get_nextSibling(this); }
+ static Node _get_nextSibling(var _this) native;
- String get oldValue() { return _get__MutationRecord_oldValue(this); }
- static String _get__MutationRecord_oldValue(var _this) native;
+ String get oldValue() { return _get_oldValue(this); }
+ static String _get_oldValue(var _this) native;
- Node get previousSibling() { return _get__MutationRecord_previousSibling(this); }
- static Node _get__MutationRecord_previousSibling(var _this) native;
+ Node get previousSibling() { return _get_previousSibling(this); }
+ static Node _get_previousSibling(var _this) native;
- NodeList get removedNodes() { return _get__MutationRecord_removedNodes(this); }
- static NodeList _get__MutationRecord_removedNodes(var _this) native;
+ NodeList get removedNodes() { return _get_removedNodes(this); }
+ static NodeList _get_removedNodes(var _this) native;
- Node get target() { return _get__MutationRecord_target(this); }
- static Node _get__MutationRecord_target(var _this) native;
+ Node get target() { return _get_target(this); }
+ static Node _get_target(var _this) native;
- String get type() { return _get__MutationRecord_type(this); }
- static String _get__MutationRecord_type(var _this) native;
+ String get type() { return _get_type(this); }
+ static String _get_type(var _this) native;
String get typeName() { return "MutationRecord"; }
}

Powered by Google App Engine
This is Rietveld 408576698