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

Unified Diff: sdk/lib/svg/dartium/svg_dartium.dart

Issue 12094103: Added MappedListIterable/Iterator to implement map() on Lists. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/svg/dartium/svg_dartium.dart
diff --git a/sdk/lib/svg/dartium/svg_dartium.dart b/sdk/lib/svg/dartium/svg_dartium.dart
index ea344d13e86295921874585e83fbbada76bb7974..39134083fdef48a86ede05caeb8d967e94a98856 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -3186,8 +3186,8 @@ class FilterElement extends SvgElement implements UriReference, ExternalResource
@DocsEditable
@DomName('SVGFilterPrimitiveStandardAttributes')
-class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 implements Stylable {
- FilterPrimitiveStandardAttributes.internal();
+class FilterPrimitiveStandardAttributes extends Stylable {
+ FilterPrimitiveStandardAttributes.internal() : super.internal();
@DomName('SVGFilterPrimitiveStandardAttributes.height')
@DocsEditable
@@ -3209,18 +3209,6 @@ class FilterPrimitiveStandardAttributes extends NativeFieldWrapperClass1 impleme
@DocsEditable
AnimatedLength get y native "SVGFilterPrimitiveStandardAttributes_y_Getter";
- @DomName('SVGFilterPrimitiveStandardAttributes.className')
- @DocsEditable
- AnimatedString get $dom_svgClassName native "SVGFilterPrimitiveStandardAttributes_className_Getter";
-
- @DomName('SVGFilterPrimitiveStandardAttributes.style')
- @DocsEditable
- CssStyleDeclaration get style native "SVGFilterPrimitiveStandardAttributes_style_Getter";
-
- @DomName('SVGFilterPrimitiveStandardAttributes.getPresentationAttribute')
- @DocsEditable
- CssValue getPresentationAttribute(String name) native "SVGFilterPrimitiveStandardAttributes_getPresentationAttribute_Callback";
-
}
// 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
@@ -3964,7 +3952,7 @@ class LengthList extends NativeFieldWrapperClass1 implements List<Length> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Length element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Length element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -4734,7 +4722,7 @@ class NumberList extends NativeFieldWrapperClass1 implements List<Number> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Number element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Number element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -5922,7 +5910,7 @@ class PathSegList extends NativeFieldWrapperClass1 implements List<PathSeg> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(PathSeg element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(PathSeg element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -6950,7 +6938,7 @@ class StringList extends NativeFieldWrapperClass1 implements List<String> {
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(String element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(String element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -7142,7 +7130,7 @@ class Stylable extends NativeFieldWrapperClass1 {
@DomName('SVGStylable.className')
@DocsEditable
- AnimatedString get $dom_svgClassName native "SVGStylable_className_Getter";
+ AnimatedString get className native "SVGStylable_className_Getter";
@DomName('SVGStylable.style')
@DocsEditable
@@ -8273,7 +8261,7 @@ class TransformList extends NativeFieldWrapperClass1 implements List<Transform>
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(Transform element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(Transform element)) =>
IterableMixinWorkaround.mappedByList(this, f);
@@ -8870,7 +8858,7 @@ class _ElementInstanceList extends NativeFieldWrapperClass1 implements List<Elem
IterableMixinWorkaround.joinList(this, separator);
Iterable map(f(ElementInstance element)) =>
- IterableMixinWorkaround.map(this, f);
+ IterableMixinWorkaround.mapList(this, f);
List mappedBy(f(ElementInstance element)) =>
IterableMixinWorkaround.mappedByList(this, f);

Powered by Google App Engine
This is Rietveld 408576698