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

Unified Diff: client/html/generated/html/dartium/XSLTProcessor.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/html/generated/html/dartium/XSLTProcessor.dart
diff --git a/client/html/generated/html/dartium/XSLTProcessor.dart b/client/html/generated/html/dartium/XSLTProcessor.dart
deleted file mode 100644
index 25ba00a8224ca69b82dd61f16d838c28ad0ba823..0000000000000000000000000000000000000000
--- a/client/html/generated/html/dartium/XSLTProcessor.dart
+++ /dev/null
@@ -1,41 +0,0 @@
-
-class _XSLTProcessorImpl extends _DOMTypeBase implements XSLTProcessor {
- _XSLTProcessorImpl._wrap(ptr) : super._wrap(ptr);
-
- void clearParameters() {
- _ptr.clearParameters();
- return;
- }
-
- String getParameter(String namespaceURI, String localName) {
- return _wrap(_ptr.getParameter(_unwrap(namespaceURI), _unwrap(localName)));
- }
-
- void importStylesheet(Node stylesheet) {
- _ptr.importStylesheet(_unwrap(stylesheet));
- return;
- }
-
- void removeParameter(String namespaceURI, String localName) {
- _ptr.removeParameter(_unwrap(namespaceURI), _unwrap(localName));
- return;
- }
-
- void reset() {
- _ptr.reset();
- return;
- }
-
- void setParameter(String namespaceURI, String localName, String value) {
- _ptr.setParameter(_unwrap(namespaceURI), _unwrap(localName), _unwrap(value));
- return;
- }
-
- Document transformToDocument(Node source) {
- return _FixHtmlDocumentReference(_wrap(_ptr.transformToDocument(_unwrap(source))));
- }
-
- DocumentFragment transformToFragment(Node source, Document docVal) {
- return _wrap(_ptr.transformToFragment(_unwrap(source), _unwrap(docVal)));
- }
-}

Powered by Google App Engine
This is Rietveld 408576698