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

Side by Side Diff: tools/dom/templates/html/dartium/html_dartium.darttemplate

Issue 18342003: Properly hiding import of deprecate from collection-dev. (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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // DO NOT EDIT 5 // DO NOT EDIT
6 // Auto-generated dart:html library. 6 // Auto-generated dart:html library.
7 7
8 /// The Dart HTML library. 8 /// The Dart HTML library.
9 /// 9 ///
10 /// For examples, see 10 /// For examples, see
11 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples) 11 /// [Dart HTML5 Samples](https://github.com/dart-lang/dart-html5-samples)
12 /// on Github. 12 /// on Github.
13 library dart.dom.html; 13 library dart.dom.html;
14 14
15 import 'dart:async'; 15 import 'dart:async';
16 import 'dart:collection'; 16 import 'dart:collection';
17 import 'dart:_collection-dev' hide Symbol; 17 import 'dart:_collection-dev' hide Symbol, deprecated;
18 import 'dart:html_common'; 18 import 'dart:html_common';
19 import 'dart:indexed_db'; 19 import 'dart:indexed_db';
20 import 'dart:isolate'; 20 import 'dart:isolate';
21 import 'dart:json' as json; 21 import 'dart:json' as json;
22 import 'dart:math'; 22 import 'dart:math';
23 import 'dart:nativewrappers'; 23 import 'dart:nativewrappers';
24 import 'dart:typed_data'; 24 import 'dart:typed_data';
25 import 'dart:web_gl' as gl; 25 import 'dart:web_gl' as gl;
26 import 'dart:web_sql'; 26 import 'dart:web_sql';
27 // Not actually used, but imported since dart:html can generate these objects. 27 // Not actually used, but imported since dart:html can generate these objects.
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 _callPortLastResult = json.parse(_getPortSyncEventData(event)); 92 _callPortLastResult = json.parse(_getPortSyncEventData(event));
93 }); 93 });
94 _callPortInitialized = true; 94 _callPortInitialized = true;
95 } 95 }
96 assert(_callPortLastResult == null); 96 assert(_callPortLastResult == null);
97 _dispatchEvent('js-sync-message', {'id': id, 'message': message}); 97 _dispatchEvent('js-sync-message', {'id': id, 'message': message});
98 var result = _callPortLastResult; 98 var result = _callPortLastResult;
99 _callPortLastResult = null; 99 _callPortLastResult = null;
100 return result; 100 return result;
101 } 101 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698