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

Side by Side Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 13820004: Fixing SVGPaint constructor DartC error. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/svg/dartium/svg_dartium.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 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:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me; 7 import 'dart:_js_helper' show Creates, Returns, JavaScriptIndexingBehavior, JSNa me;
8 import 'dart:_foreign_helper' show JS; 8 import 'dart:_foreign_helper' show JS;
9 // DO NOT EDIT - unless you are editing documentation as per: 9 // DO NOT EDIT - unless you are editing documentation as per:
10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation 10 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation
(...skipping 7422 matching lines...) Expand 10 before | Expand all | Expand 10 after
7433 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 7433 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
7434 // for details. All rights reserved. Use of this source code is governed by a 7434 // for details. All rights reserved. Use of this source code is governed by a
7435 // BSD-style license that can be found in the LICENSE file. 7435 // BSD-style license that can be found in the LICENSE file.
7436 7436
7437 7437
7438 // Hack because the baseclass is private in dart:html, and we want to omit this 7438 // Hack because the baseclass is private in dart:html, and we want to omit this
7439 // type entirely but can't. 7439 // type entirely but can't.
7440 @DocsEditable 7440 @DocsEditable
7441 @DomName('SVGColor') 7441 @DomName('SVGColor')
7442 class _SVGColor native "*SVGColor" { 7442 class _SVGColor native "*SVGColor" {
7443 _SVGColor.internal();
7443 } 7444 }
7444 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7445 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
7445 // for details. All rights reserved. Use of this source code is governed by a 7446 // for details. All rights reserved. Use of this source code is governed by a
7446 // BSD-style license that can be found in the LICENSE file. 7447 // BSD-style license that can be found in the LICENSE file.
7447 7448
7448 7449
7449 @DocsEditable 7450 @DocsEditable
7450 @DomName('SVGComponentTransferFunctionElement') 7451 @DomName('SVGComponentTransferFunctionElement')
7451 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "* SVGComponentTransferFunctionElement" { 7452 abstract class _SVGComponentTransferFunctionElement extends SvgElement native "* SVGComponentTransferFunctionElement" {
7452 } 7453 }
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
7630 7631
7631 7632
7632 @DocsEditable 7633 @DocsEditable
7633 @DomName('SVGVKernElement') 7634 @DomName('SVGVKernElement')
7634 abstract class _SVGVKernElement extends SvgElement native "*SVGVKernElement" { 7635 abstract class _SVGVKernElement extends SvgElement native "*SVGVKernElement" {
7635 7636
7636 @DomName('SVGVKernElement.SVGVKernElement') 7637 @DomName('SVGVKernElement.SVGVKernElement')
7637 @DocsEditable 7638 @DocsEditable
7638 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern"); 7639 factory _SVGVKernElement() => _SvgElementFactoryProvider.createSvgElement_tag( "vkern");
7639 } 7640 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698