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

Unified Diff: client/html/src/XMLHttpRequestWrappingImplementation.dart

Issue 8548019: Add a script for determining which DOM methods correspond to which HTML methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More code review changes Created 9 years, 1 month 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/html/src/XMLHttpRequestWrappingImplementation.dart
diff --git a/client/html/src/XMLHttpRequestWrappingImplementation.dart b/client/html/src/XMLHttpRequestWrappingImplementation.dart
index f129149542def5786948189388e81bdecb3b3a38..e91fc65af57f5e71ffe1cc3d5e46c01555367554 100644
--- a/client/html/src/XMLHttpRequestWrappingImplementation.dart
+++ b/client/html/src/XMLHttpRequestWrappingImplementation.dart
@@ -18,6 +18,7 @@ class XMLHttpRequestWrappingImplementation extends EventTargetWrappingImplementa
XMLHttpRequestWrappingImplementation._wrap(
dom.XMLHttpRequest ptr) : super._wrap(ptr);
+ /** @domName DOMWindow.createXMLHttpRequest */
Jacob 2011/11/21 23:12:11 here and elsewhere, replace DOMWindow with Window
nweiz 2011/11/22 01:11:09 See previous response.
factory XMLHttpRequestWrappingImplementation() {
return new XMLHttpRequestWrappingImplementation._wrap(
new dom.XMLHttpRequest());

Powered by Google App Engine
This is Rietveld 408576698