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

Unified Diff: client/dom/generated/src/wrapping/_DocumentTypeWrappingImplementation.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/_DocumentTypeWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DocumentTypeWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DocumentTypeWrappingImplementation.dart
index 97abb3928d5cccf0a66fd8c5a50c57886c823c99..c07eb92a7b51904a68945f79cb15bbb25c3ce4a9 100644
--- a/client/dom/generated/src/wrapping/_DocumentTypeWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DocumentTypeWrappingImplementation.dart
@@ -11,23 +11,23 @@ class _DocumentTypeWrappingImplementation extends _NodeWrappingImplementation im
return new _DocumentTypeWrappingImplementation();
}
- NamedNodeMap get entities() { return _get__DocumentType_entities(this); }
- static NamedNodeMap _get__DocumentType_entities(var _this) native;
+ NamedNodeMap get entities() { return _get_entities(this); }
+ static NamedNodeMap _get_entities(var _this) native;
- String get internalSubset() { return _get__DocumentType_internalSubset(this); }
- static String _get__DocumentType_internalSubset(var _this) native;
+ String get internalSubset() { return _get_internalSubset(this); }
+ static String _get_internalSubset(var _this) native;
- String get name() { return _get__DocumentType_name(this); }
- static String _get__DocumentType_name(var _this) native;
+ String get name() { return _get_name(this); }
+ static String _get_name(var _this) native;
- NamedNodeMap get notations() { return _get__DocumentType_notations(this); }
- static NamedNodeMap _get__DocumentType_notations(var _this) native;
+ NamedNodeMap get notations() { return _get_notations(this); }
+ static NamedNodeMap _get_notations(var _this) native;
- String get publicId() { return _get__DocumentType_publicId(this); }
- static String _get__DocumentType_publicId(var _this) native;
+ String get publicId() { return _get_publicId(this); }
+ static String _get_publicId(var _this) native;
- String get systemId() { return _get__DocumentType_systemId(this); }
- static String _get__DocumentType_systemId(var _this) native;
+ String get systemId() { return _get_systemId(this); }
+ static String _get_systemId(var _this) native;
String get typeName() { return "DocumentType"; }
}

Powered by Google App Engine
This is Rietveld 408576698