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

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

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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
Index: client/dom/generated/src/frog/XMLHttpRequest.dart
diff --git a/client/dom/generated/src/frog/XMLHttpRequest.dart b/client/dom/generated/src/frog/XMLHttpRequest.dart
index 256aafc395214c8120070244f97eb4b03e6c0a08..a91ba591764e4f78ef1c37d7fcef95702ea86714 100644
--- a/client/dom/generated/src/frog/XMLHttpRequest.dart
+++ b/client/dom/generated/src/frog/XMLHttpRequest.dart
@@ -1,5 +1,5 @@
-class XMLHttpRequestJS implements XMLHttpRequest native "*XMLHttpRequest" {
+class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLHttpRequest" {
XMLHttpRequest() native;
@@ -19,7 +19,7 @@ class XMLHttpRequestJS implements XMLHttpRequest native "*XMLHttpRequest" {
int get readyState() native "return this.readyState;";
- BlobJS get responseBlob() native "return this.responseBlob;";
+ BlobJs get responseBlob() native "return this.responseBlob;";
String get responseText() native "return this.responseText;";
@@ -27,13 +27,13 @@ class XMLHttpRequestJS implements XMLHttpRequest native "*XMLHttpRequest" {
void set responseType(String value) native "this.responseType = value;";
- DocumentJS get responseXML() native "return this.responseXML;";
+ DocumentJs get responseXML() native "return this.responseXML;";
int get status() native "return this.status;";
String get statusText() native "return this.statusText;";
- XMLHttpRequestUploadJS get upload() native "return this.upload;";
+ XMLHttpRequestUploadJs get upload() native "return this.upload;";
bool get withCredentials() native "return this.withCredentials;";
@@ -43,7 +43,7 @@ class XMLHttpRequestJS implements XMLHttpRequest native "*XMLHttpRequest" {
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
- bool dispatchEvent(EventJS evt) native;
+ bool dispatchEvent(EventJs evt) native;
String getAllResponseHeaders() native;
@@ -58,8 +58,4 @@ class XMLHttpRequestJS implements XMLHttpRequest native "*XMLHttpRequest" {
void send([var data = null]) native;
void setRequestHeader(String header, String value) native;
-
- var dartObjectLocalStorage;
-
- String get typeName() native;
}
« no previous file with comments | « client/dom/generated/src/frog/WorkerNavigator.dart ('k') | client/dom/generated/src/frog/XMLHttpRequestException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698