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

Unified Diff: lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate

Issue 10456006: Wrapperless dart:html for Dartium. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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: lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate
diff --git a/lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate b/lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate
index c568631cfa07c3a61999c0509689eb1ca7247d84..537f20aef1f024a8ec3fa19a1837a428fe3922bb 100644
--- a/lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate
+++ b/lib/dom/templates/html/dartium/factoryprovider_XMLHttpRequest.darttemplate
@@ -3,7 +3,8 @@
// BSD-style license that can be found in the LICENSE file.
class $FACTORYPROVIDER {
- factory $INTERFACE() => _wrap(_$(DOM_INTERFACE)FactoryProviderImpl.create$DOM_INTERFACE());
+ factory $INTERFACE($PARAMETERS) => _create$INTERFACE($ARGUMENTS);
+ static $INTERFACE _create$INTERFACE($PARAMETERS) native "$NATIVE_NAME";
factory XMLHttpRequest.get(String url,
onSuccess(XMLHttpRequest request)) =>

Powered by Google App Engine
This is Rietveld 408576698