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

Unified Diff: client/dom/generated/src/frog/XSLTProcessor.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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
« no previous file with comments | « client/dom/generated/src/frog/XPathResult.dart ('k') | client/dom/monkey_dom.dart.broken » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/XSLTProcessor.dart
diff --git a/client/dom/generated/src/frog/XSLTProcessor.dart b/client/dom/generated/src/frog/XSLTProcessor.dart
index 364d0f32cee87b6f28501dd9cde23e2e84c933ca..95b5eaba3b3569da28c21ff8efc72bb7bcd37ce8 100644
--- a/client/dom/generated/src/frog/XSLTProcessor.dart
+++ b/client/dom/generated/src/frog/XSLTProcessor.dart
@@ -1,11 +1,11 @@
-class XSLTProcessor native "*XSLTProcessor" {
+class XSLTProcessorJS implements XSLTProcessor native "*XSLTProcessor" {
void clearParameters() native;
String getParameter(String namespaceURI, String localName) native;
- void importStylesheet(Node stylesheet) native;
+ void importStylesheet(NodeJS stylesheet) native;
void removeParameter(String namespaceURI, String localName) native;
@@ -13,9 +13,9 @@ class XSLTProcessor native "*XSLTProcessor" {
void setParameter(String namespaceURI, String localName, String value) native;
- Document transformToDocument(Node source) native;
+ DocumentJS transformToDocument(NodeJS source) native;
- DocumentFragment transformToFragment(Node source, Document docVal) native;
+ DocumentFragmentJS transformToFragment(NodeJS source, DocumentJS docVal) native;
var dartObjectLocalStorage;
« no previous file with comments | « client/dom/generated/src/frog/XPathResult.dart ('k') | client/dom/monkey_dom.dart.broken » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698