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

Side by Side Diff: sdk/lib/svg/dartium/svg_dartium.dart

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
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/typed_data/typed_data.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 /** 1 /**
2 * Scalable Vector Graphics: 2 * Scalable Vector Graphics:
3 * Two-dimensional vector graphics with support for events and animation. 3 * Two-dimensional vector graphics with support for events and animation.
4 * 4 *
5 * For details about the features and syntax of SVG, a W3C standard, 5 * For details about the features and syntax of SVG, a W3C standard,
6 * refer to the 6 * refer to the
7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 7 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
8 */ 8 */
9 library dart.dom.svg; 9 library dart.dom.svg;
10 10
11 import 'dart:async'; 11 import 'dart:async';
12 import 'dart:collection'; 12 import 'dart:collection' hide LinkedList, LinkedListEntry;
13 import 'dart:_internal'; 13 import 'dart:_internal';
14 import 'dart:html'; 14 import 'dart:html';
15 import 'dart:html_common'; 15 import 'dart:html_common';
16 import 'dart:nativewrappers'; 16 import 'dart:nativewrappers';
17 import 'dart:_blink' as _blink; 17 import 'dart:_blink' as _blink;
18 import 'dart:js' as js; 18 import 'dart:js' as js;
19 // DO NOT EDIT 19 // DO NOT EDIT
20 // Auto-generated dart:svg library. 20 // Auto-generated dart:svg library.
21 21
22 // FIXME: Can we make this private? 22 // FIXME: Can we make this private?
(...skipping 7388 matching lines...) Expand 10 before | Expand all | Expand 10 after
7411 * Constructor instantiated by the DOM when a custom element has been created. 7411 * Constructor instantiated by the DOM when a custom element has been created.
7412 * 7412 *
7413 * This can only be called by subclasses from their created constructor. 7413 * This can only be called by subclasses from their created constructor.
7414 */ 7414 */
7415 _SVGMPathElement.created() : super.created(); 7415 _SVGMPathElement.created() : super.created();
7416 7416
7417 // Override these methods for Dartium _SVGMPathElement can't be abstract. 7417 // Override these methods for Dartium _SVGMPathElement can't be abstract.
7418 AnimatedString get href => 7418 AnimatedString get href =>
7419 _blink.BlinkSVGMPathElement.instance.href_Getter_(this); 7419 _blink.BlinkSVGMPathElement.instance.href_Getter_(this);
7420 } 7420 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | sdk/lib/typed_data/typed_data.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698