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

Side by Side Diff: tools/dom/templates/html/dart2js/svg_dart2js.darttemplate

Issue 2975443002: Don't use `LinkedList` in the core libraries anymore. (Closed)
Patch Set: Rebase Created 3 years, 4 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
OLDNEW
1 // DO NOT EDIT - unless you are editing documentation as per: 1 // DO NOT EDIT - unless you are editing documentation as per:
2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 2 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
3 // Auto-generated dart:svg library. 3 // Auto-generated dart:svg library.
4 4
5 /** 5 /**
6 * Scalable Vector Graphics: 6 * Scalable Vector Graphics:
7 * Two-dimensional vector graphics with support for events and animation. 7 * Two-dimensional vector graphics with support for events and animation.
8 * 8 *
9 * For details about the features and syntax of SVG, a W3C standard, 9 * For details about the features and syntax of SVG, a W3C standard,
10 * refer to the 10 * refer to the
11 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 11 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
12 */ 12 */
13 library dart.dom.svg; 13 library dart.dom.svg;
14 14
15 import 'dart:async'; 15 import 'dart:async';
16 import 'dart:collection'; 16 import 'dart:collection' hide LinkedList, LinkedListEntry;
17 import 'dart:_internal' show FixedLengthListMixin; 17 import 'dart:_internal' show FixedLengthListMixin;
18 import 'dart:html'; 18 import 'dart:html';
19 import 'dart:html_common'; 19 import 'dart:html_common';
20 import 'dart:_js_helper' show Creates, Returns, JSName, Native; 20 import 'dart:_js_helper' show Creates, Returns, JSName, Native;
21 import 'dart:_foreign_helper' show JS; 21 import 'dart:_foreign_helper' show JS;
22 import 'dart:_interceptors' show Interceptor; 22 import 'dart:_interceptors' show Interceptor;
23 23
24 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart'; 24 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart';
25 25
26 $!GENERATED_DART_FILES 26 $!GENERATED_DART_FILES
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698