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

Unified Diff: client/html/generated/html/dartium/XSLTProcessor.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/html/generated/html/dartium/XSLTProcessor.dart
diff --git a/client/html/generated/html/dartium/XSLTProcessor.dart b/client/html/generated/html/dartium/XSLTProcessor.dart
new file mode 100644
index 0000000000000000000000000000000000000000..25ba00a8224ca69b82dd61f16d838c28ad0ba823
--- /dev/null
+++ b/client/html/generated/html/dartium/XSLTProcessor.dart
@@ -0,0 +1,41 @@
+
+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