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

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

Issue 1173403004: Changed to use JSInterop (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Re-gen'd somehow diffs stopped showing up in CL Created 5 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
OLDNEW
1 // DO NOT EDIT 1 // DO NOT EDIT
2 // Auto-generated dart:svg library. 2 // Auto-generated dart:svg library.
3 3
4 /** 4 /**
5 * Scalable Vector Graphics: 5 * Scalable Vector Graphics:
6 * Two-dimensional vector graphics with support for events and animation. 6 * Two-dimensional vector graphics with support for events and animation.
7 * 7 *
8 * For details about the features and syntax of SVG, a W3C standard, 8 * For details about the features and syntax of SVG, a W3C standard,
9 * refer to the 9 * refer to the
10 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/). 10 * [Scalable Vector Graphics Specification](http://www.w3.org/TR/SVG/).
11 */ 11 */
12 library dart.dom.svg; 12 library dart.dom.svg;
13 13
14 import 'dart:async'; 14 import 'dart:async';
15 import 'dart:collection'; 15 import 'dart:collection';
16 import 'dart:_internal' hide deprecated; 16 import 'dart:_internal' hide deprecated;
17 import 'dart:html'; 17 import 'dart:html';
18 import 'dart:html_common'; 18 import 'dart:html_common';
19 import 'dart:nativewrappers'; 19 import 'dart:nativewrappers';
20 import 'dart:_blink' as _blink; 20 import 'dart:_blink' as _blink;
21 21
22 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart'; 22 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart';
23 23
24 $!GENERATED_DART_FILES 24 $!GENERATED_DART_FILES
25 // FIXME: Can we make this private? 25 // FIXME: Can we make this private?
26 final svgBlinkMap = { 26 final svgBlinkMap = {
27 $!TYPE_MAP 27 $!TYPE_MAP
28 }; 28 };
29
30 $if JSINTEROP
31 // FIXME: Can we make this private?
32 final svgBlinkFunctionMap = {
33 $!TYPE_FUNCTION_MAP
34 };
35 $endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698