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

Unified Diff: client/dom/generated/src/wrapping/_XSLTProcessorWrappingImplementation.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/_XSLTProcessorWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_XSLTProcessorWrappingImplementation.dart b/client/dom/generated/src/wrapping/_XSLTProcessorWrappingImplementation.dart
deleted file mode 100644
index f5887aa55153fceb3192fff4fe7b597e6f37071d..0000000000000000000000000000000000000000
--- a/client/dom/generated/src/wrapping/_XSLTProcessorWrappingImplementation.dart
+++ /dev/null
@@ -1,60 +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 _XSLTProcessorWrappingImplementation extends DOMWrapperBase implements XSLTProcessor {
- _XSLTProcessorWrappingImplementation() : super() {}
-
- static create__XSLTProcessorWrappingImplementation() native {
- return new _XSLTProcessorWrappingImplementation();
- }
-
- void clearParameters() {
- _clearParameters(this);
- return;
- }
- static void _clearParameters(receiver) native;
-
- String getParameter(String namespaceURI, String localName) {
- return _getParameter(this, namespaceURI, localName);
- }
- static String _getParameter(receiver, namespaceURI, localName) native;
-
- void importStylesheet(Node stylesheet) {
- _importStylesheet(this, stylesheet);
- return;
- }
- static void _importStylesheet(receiver, stylesheet) native;
-
- void removeParameter(String namespaceURI, String localName) {
- _removeParameter(this, namespaceURI, localName);
- return;
- }
- static void _removeParameter(receiver, namespaceURI, localName) native;
-
- void reset() {
- _reset(this);
- return;
- }
- static void _reset(receiver) native;
-
- void setParameter(String namespaceURI, String localName, String value) {
- _setParameter(this, namespaceURI, localName, value);
- return;
- }
- static void _setParameter(receiver, namespaceURI, localName, value) native;
-
- Document transformToDocument(Node source) {
- return _transformToDocument(this, source);
- }
- static Document _transformToDocument(receiver, source) native;
-
- DocumentFragment transformToFragment(Node source, Document docVal) {
- return _transformToFragment(this, source, docVal);
- }
- static DocumentFragment _transformToFragment(receiver, source, docVal) native;
-
- String get typeName() { return "XSLTProcessor"; }
-}
« no previous file with comments | « client/dom/generated/src/wrapping/_XPathResultWrappingImplementation.dart ('k') | client/dom/scripts/dartdomgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698