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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
deleted file mode 100644
index 05ce1b9947609683abc3d72f193f7bb6521de1cd..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_ShadowRootWrappingImplementation.dart
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class _ShadowRootWrappingImplementation extends _DocumentFragmentWrappingImplementation implements ShadowRoot {
- _ShadowRootWrappingImplementation() : super() {}
-
- static create__ShadowRootWrappingImplementation() native {
- return new _ShadowRootWrappingImplementation();
- }
-
- Element get host() { return _get_host(this); }
- static Element _get_host(var _this) native;
-
- String get innerHTML() { return _get_innerHTML(this); }
- static String _get_innerHTML(var _this) native;
-
- void set innerHTML(String value) { _set_innerHTML(this, value); }
- static void _set_innerHTML(var _this, String value) 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