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

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

Issue 1832713002: Optimize dartium dart:html bindings so real world application performance is acceptable. Improves d… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: update cached patches Created 4 years, 8 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/).
(...skipping 10 matching lines...) Expand all
21 import 'dart:js' as js; 21 import 'dart:js' as js;
22 22
23 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart'; 23 part '$AUXILIARY_DIR/shared_SVGFactoryProviders.dart';
24 24
25 $!GENERATED_DART_FILES 25 $!GENERATED_DART_FILES
26 // FIXME: Can we make this private? 26 // FIXME: Can we make this private?
27 @Deprecated("Internal Use Only") 27 @Deprecated("Internal Use Only")
28 final svgBlinkMap = { 28 final svgBlinkMap = {
29 $!TYPE_MAP 29 $!TYPE_MAP
30 }; 30 };
31
32 $if JSINTEROP
33 // FIXME: Can we make this private?
34 @Deprecated("Internal Use Only")
35 final svgBlinkFunctionMap = {
36 $!TYPE_FUNCTION_MAP
37 };
38 $endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698