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

Side by Side Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 18464003: Updated with ArrayBuffer => ByteBuffer rename in HttpRequest docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /// The Dart HTML library. 1 /// The Dart HTML library.
2 /// 2 ///
3 /// For examples, see 3 /// For examples, see
4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) 4 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
5 /// on Github. 5 /// on Github.
6 library dart.dom.html; 6 library dart.dom.html;
7 7
8 import 'dart:async'; 8 import 'dart:async';
9 import 'dart:collection'; 9 import 'dart:collection';
10 import 'dart:_collection-dev' hide Symbol, deprecated; 10 import 'dart:_collection-dev' hide Symbol, deprecated;
(...skipping 12168 matching lines...) Expand 10 before | Expand all | Expand 10 after
12179 * </table> 12179 * </table>
12180 */ 12180 */
12181 @DomName('XMLHttpRequest.readyState') 12181 @DomName('XMLHttpRequest.readyState')
12182 @DocsEditable() 12182 @DocsEditable()
12183 final int readyState; 12183 final int readyState;
12184 12184
12185 /** 12185 /**
12186 * The data received as a reponse from the request. 12186 * The data received as a reponse from the request.
12187 * 12187 *
12188 * The data could be in the 12188 * The data could be in the
12189 * form of a [String], [ArrayBuffer], [Document], [Blob], or json (also a 12189 * form of a [String], [ByteBuffer], [Document], [Blob], or json (also a
12190 * [String]). `null` indicates request failure. 12190 * [String]). `null` indicates request failure.
12191 */ 12191 */
12192 @DomName('XMLHttpRequest.response') 12192 @DomName('XMLHttpRequest.response')
12193 @DocsEditable() 12193 @DocsEditable()
12194 @SupportedBrowser(SupportedBrowser.CHROME) 12194 @SupportedBrowser(SupportedBrowser.CHROME)
12195 @SupportedBrowser(SupportedBrowser.FIREFOX) 12195 @SupportedBrowser(SupportedBrowser.FIREFOX)
12196 @SupportedBrowser(SupportedBrowser.IE, '10') 12196 @SupportedBrowser(SupportedBrowser.IE, '10')
12197 @SupportedBrowser(SupportedBrowser.SAFARI) 12197 @SupportedBrowser(SupportedBrowser.SAFARI)
12198 @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num') 12198 @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num')
12199 final Object response; 12199 final Object response;
(...skipping 17257 matching lines...) Expand 10 before | Expand all | Expand 10 after
29457 _position = nextPosition; 29457 _position = nextPosition;
29458 return true; 29458 return true;
29459 } 29459 }
29460 _current = null; 29460 _current = null;
29461 _position = _array.length; 29461 _position = _array.length;
29462 return false; 29462 return false;
29463 } 29463 }
29464 29464
29465 T get current => _current; 29465 T get current => _current;
29466 } 29466 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698