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

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

Issue 18692002: Hide deprecated in html libs. (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 | « sdk/lib/_collection_dev/iterable.dart ('k') | sdk/lib/io/io.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; 10 import 'dart:_collection-dev' hide Symbol, deprecated;
11 import 'dart:html_common'; 11 import 'dart:html_common';
12 import 'dart:indexed_db'; 12 import 'dart:indexed_db';
13 import 'dart:isolate'; 13 import 'dart:isolate';
14 import 'dart:json' as json; 14 import 'dart:json' as json;
15 import 'dart:math'; 15 import 'dart:math';
16 import 'dart:typed_data'; 16 import 'dart:typed_data';
17 import 'dart:svg' as svg; 17 import 'dart:svg' as svg;
18 import 'dart:web_audio' as web_audio; 18 import 'dart:web_audio' as web_audio;
19 import 'dart:web_gl' as gl; 19 import 'dart:web_gl' as gl;
20 import 'dart:web_sql'; 20 import 'dart:web_sql';
(...skipping 29354 matching lines...) Expand 10 before | Expand all | Expand 10 after
29375 _position = nextPosition; 29375 _position = nextPosition;
29376 return true; 29376 return true;
29377 } 29377 }
29378 _current = null; 29378 _current = null;
29379 _position = _array.length; 29379 _position = _array.length;
29380 return false; 29380 return false;
29381 } 29381 }
29382 29382
29383 T get current => _current; 29383 T get current => _current;
29384 } 29384 }
OLDNEW
« no previous file with comments | « sdk/lib/_collection_dev/iterable.dart ('k') | sdk/lib/io/io.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698