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

Unified Diff: client/dom/src/wrapping_FactoryProviders.dart

Issue 9391029: Add XSLTProcessor constructor (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/dom/src/wrapping_FactoryProviders.dart
diff --git a/client/dom/src/wrapping_FactoryProviders.dart b/client/dom/src/wrapping_FactoryProviders.dart
index 938d1bfe1a2d13bf91235515d2d275c24b50854f..449543a630359bac0c18ed152f3266b30696e939 100644
--- a/client/dom/src/wrapping_FactoryProviders.dart
+++ b/client/dom/src/wrapping_FactoryProviders.dart
@@ -101,3 +101,10 @@ class _XMLHttpRequestFactoryProvider {
static XMLHttpRequest create() native;
}
+
+class _XSLTProcessorFactoryProvider {
+
+ factory XSLTProcessor() { return create(); }
+
+ static XSLTProcessor create() native;
+}

Powered by Google App Engine
This is Rietveld 408576698