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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 a1398f7444bfdd0ab31ca986f0a0cb0ebce787a5..504cd85f213b13fba50d9e39356e8fa56e95f646 100644
--- a/client/dom/generated/src/frog/XMLHttpRequest.dart
+++ b/client/dom/generated/src/frog/XMLHttpRequest.dart
@@ -1,5 +1,5 @@
-class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLHttpRequest" {
+class _XMLHttpRequestJs extends _DOMTypeJs implements XMLHttpRequest native "*XMLHttpRequest" {
XMLHttpRequest() native;
@@ -21,7 +21,7 @@ class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLH
Object get response() native "return this.response;";
- BlobJs get responseBlob() native "return this.responseBlob;";
+ _BlobJs get responseBlob() native "return this.responseBlob;";
String get responseText() native "return this.responseText;";
@@ -29,13 +29,13 @@ class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLH
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;";
@@ -45,7 +45,7 @@ class XMLHttpRequestJs extends DOMTypeJs implements XMLHttpRequest native "*XMLH
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
- bool dispatchEvent(EventJs evt) native;
+ bool dispatchEvent(_EventJs evt) native;
String getAllResponseHeaders() 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