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

Side by Side 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, 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _XSLTProcessorImpl extends _DOMTypeBase implements XSLTProcessor {
3 _XSLTProcessorImpl._wrap(ptr) : super._wrap(ptr);
4
5 void clearParameters() {
6 _ptr.clearParameters();
7 return;
8 }
9
10 String getParameter(String namespaceURI, String localName) {
11 return _wrap(_ptr.getParameter(_unwrap(namespaceURI), _unwrap(localName)));
12 }
13
14 void importStylesheet(Node stylesheet) {
15 _ptr.importStylesheet(_unwrap(stylesheet));
16 return;
17 }
18
19 void removeParameter(String namespaceURI, String localName) {
20 _ptr.removeParameter(_unwrap(namespaceURI), _unwrap(localName));
21 return;
22 }
23
24 void reset() {
25 _ptr.reset();
26 return;
27 }
28
29 void setParameter(String namespaceURI, String localName, String value) {
30 _ptr.setParameter(_unwrap(namespaceURI), _unwrap(localName), _unwrap(value)) ;
31 return;
32 }
33
34 Document transformToDocument(Node source) {
35 return _FixHtmlDocumentReference(_wrap(_ptr.transformToDocument(_unwrap(sour ce))));
36 }
37
38 DocumentFragment transformToFragment(Node source, Document docVal) {
39 return _wrap(_ptr.transformToFragment(_unwrap(source), _unwrap(docVal)));
40 }
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698