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

Unified Diff: sdk/lib/svg/dart2js/svg_dart2js.dart

Issue 11316221: Fixing Exception name conflicts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/svg/dart2js/svg_dart2js.dart
diff --git a/sdk/lib/svg/dart2js/svg_dart2js.dart b/sdk/lib/svg/dart2js/svg_dart2js.dart
index baafa49bdac40f06267489d32dcd75a0a5779602..4de45d39d692d13bca0282a87d17d5fea9fa5c5b 100644
--- a/sdk/lib/svg/dart2js/svg_dart2js.dart
+++ b/sdk/lib/svg/dart2js/svg_dart2js.dart
@@ -1301,32 +1301,6 @@ class EllipseElement extends SvgElement implements Transformable, Tests, Stylabl
// BSD-style license that can be found in the LICENSE file.
-/// @domName SVGException; @docsEditable true
-class Exception native "*SVGException" {
-
- static const int SVG_INVALID_VALUE_ERR = 1;
-
- static const int SVG_MATRIX_NOT_INVERTABLE = 2;
-
- static const int SVG_WRONG_TYPE_ERR = 0;
-
- /// @domName SVGException.code; @docsEditable true
- final int code;
-
- /// @domName SVGException.message; @docsEditable true
- final String message;
-
- /// @domName SVGException.name; @docsEditable true
- final String name;
-
- /// @domName SVGException.toString; @docsEditable true
- String toString() native;
-}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-
/// @domName SVGExternalResourcesRequired
abstract class ExternalResourcesRequired {
@@ -5072,6 +5046,32 @@ class SvgElement extends Element native "*SVGElement" {
// BSD-style license that can be found in the LICENSE file.
+/// @domName SVGException; @docsEditable true
+class SvgException native "*SVGException" {
+
+ static const int SVG_INVALID_VALUE_ERR = 1;
+
+ static const int SVG_MATRIX_NOT_INVERTABLE = 2;
+
+ static const int SVG_WRONG_TYPE_ERR = 0;
+
+ /// @domName SVGException.code; @docsEditable true
+ final int code;
+
+ /// @domName SVGException.message; @docsEditable true
+ final String message;
+
+ /// @domName SVGException.name; @docsEditable true
+ final String name;
+
+ /// @domName SVGException.toString; @docsEditable true
+ String toString() native;
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
class SvgSvgElement extends SvgElement implements FitToViewBox, Tests, Stylable, Locatable, ExternalResourcesRequired, ZoomAndPan, LangSpace native "*SVGSVGElement" {
factory SvgSvgElement() => _SvgSvgElementFactoryProvider.createSvgSvgElement();
« no previous file with comments | « sdk/lib/html/scripts/htmlrenamer.py ('k') | sdk/lib/svg/dartium/svg_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698