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

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

Issue 9422008: Regenerate frog dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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/wrapping/_ShadowRootWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
index 53433f8fe22d5297371d55225851677c42301967..09e5da963ccceacf8b23438720b8294a1306e6d5 100644
--- a/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
@@ -4,7 +4,7 @@
// WARNING: Do not edit - generated code.
-class _ShadowRootWrappingImplementation extends _NodeWrappingImplementation implements ShadowRoot {
+class _ShadowRootWrappingImplementation extends _DocumentFragmentWrappingImplementation implements ShadowRoot {
_ShadowRootWrappingImplementation() : super() {}
static create__ShadowRootWrappingImplementation() native {
@@ -14,5 +14,25 @@ class _ShadowRootWrappingImplementation extends _NodeWrappingImplementation impl
Element get host() { return _get_host(this); }
static Element _get_host(var _this) native;
+ Element getElementById(String elementId) {
+ return _getElementById(this, elementId);
+ }
+ static Element _getElementById(receiver, elementId) native;
+
+ NodeList getElementsByClassName(String className) {
+ return _getElementsByClassName(this, className);
+ }
+ static NodeList _getElementsByClassName(receiver, className) native;
+
+ NodeList getElementsByTagName(String tagName) {
+ return _getElementsByTagName(this, tagName);
+ }
+ static NodeList _getElementsByTagName(receiver, tagName) native;
+
+ NodeList getElementsByTagNameNS(String namespaceURI, String localName) {
+ return _getElementsByTagNameNS(this, namespaceURI, localName);
+ }
+ static NodeList _getElementsByTagNameNS(receiver, namespaceURI, localName) native;
+
String get typeName() { return "ShadowRoot"; }
}

Powered by Google App Engine
This is Rietveld 408576698