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

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

Issue 12387106: Renaming CSS primitive types to have CSS prefixes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 library dart.dom.svg; 1 library dart.dom.svg;
2 2
3 import 'dart:async'; 3 import 'dart:async';
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:html_common'; 6 import 'dart:html_common';
7 import 'dart:nativewrappers'; 7 import 'dart:nativewrappers';
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated dart:svg library. 9 // Auto-generated dart:svg library.
10 10
(...skipping 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2; 850 static const int SVG_COLORTYPE_RGBCOLOR_ICCCOLOR = 2;
851 851
852 static const int SVG_COLORTYPE_UNKNOWN = 0; 852 static const int SVG_COLORTYPE_UNKNOWN = 0;
853 853
854 @DomName('SVGColor.colorType') 854 @DomName('SVGColor.colorType')
855 @DocsEditable 855 @DocsEditable
856 int get colorType native "SVGColor_colorType_Getter"; 856 int get colorType native "SVGColor_colorType_Getter";
857 857
858 @DomName('SVGColor.rgbColor') 858 @DomName('SVGColor.rgbColor')
859 @DocsEditable 859 @DocsEditable
860 RgbColor get rgbColor native "SVGColor_rgbColor_Getter"; 860 CssRgbColor get rgbColor native "SVGColor_rgbColor_Getter";
861 861
862 @DomName('SVGColor.setColor') 862 @DomName('SVGColor.setColor')
863 @DocsEditable 863 @DocsEditable
864 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo r_setColor_Callback"; 864 void setColor(int colorType, String rgbColor, String iccColor) native "SVGColo r_setColor_Callback";
865 865
866 @DomName('SVGColor.setRGBColor') 866 @DomName('SVGColor.setRGBColor')
867 @DocsEditable 867 @DocsEditable
868 void setRgbColor(String rgbColor) native "SVGColor_setRGBColor_Callback"; 868 void setRgbColor(String rgbColor) native "SVGColor_setRGBColor_Callback";
869 869
870 @DomName('SVGColor.setRGBColorICCColor') 870 @DomName('SVGColor.setRGBColorICCColor')
(...skipping 7829 matching lines...) Expand 10 before | Expand all | Expand 10 after
8700 @DocsEditable 8700 @DocsEditable
8701 @DomName('SVGVKernElement') 8701 @DomName('SVGVKernElement')
8702 class _SVGVKernElement extends SvgElement { 8702 class _SVGVKernElement extends SvgElement {
8703 _SVGVKernElement.internal() : super.internal(); 8703 _SVGVKernElement.internal() : super.internal();
8704 8704
8705 @DomName('SVGVKernElement.SVGVKernElement') 8705 @DomName('SVGVKernElement.SVGVKernElement')
8706 @DocsEditable 8706 @DocsEditable
8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 8707 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
8708 8708
8709 } 8709 }
OLDNEW
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698