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

Unified Diff: client/dom/frog/dom_frog.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
« no previous file with comments | « no previous file | client/dom/generated/src/interface/XSLTProcessor.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/frog/dom_frog.dart
diff --git a/client/dom/frog/dom_frog.dart b/client/dom/frog/dom_frog.dart
index 2671043a04266adc41ee5fbdb29b01892ce7db07..b2ad8d269f3fee2eaf0b5ec711840018aafbd187 100644
--- a/client/dom/frog/dom_frog.dart
+++ b/client/dom/frog/dom_frog.dart
@@ -22691,7 +22691,9 @@ interface XPathResult {
// WARNING: Do not edit - generated code.
-interface XSLTProcessor {
+interface XSLTProcessor default _XSLTProcessorFactoryProvider {
+
+ XSLTProcessor();
void clearParameters();
@@ -23451,6 +23453,11 @@ class _XMLHttpRequestFactoryProvider {
factory XMLHttpRequest() native '''return new XMLHttpRequest();''';
}
+
+class _XSLTProcessorFactoryProvider {
+
+ factory XSLTProcessor() native '''return new XSLTProcessor();''';
+}
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
« no previous file with comments | « no previous file | client/dom/generated/src/interface/XSLTProcessor.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698