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

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

Issue 1236793006: Fix type problem with FilteredElementList._iterable (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Review fixes Created 5 years, 5 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
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/filteredelementlist_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0845cbfb070c4758e2b93f506feb5b324eca4dbe..8d52279642e30b29769043145a096232644d5d18 100644
--- a/sdk/lib/svg/dartium/svg_dartium.dart
+++ b/sdk/lib/svg/dartium/svg_dartium.dart
@@ -5448,7 +5448,7 @@ class SvgElement extends Element implements GlobalEventHandlers {
CssClassSet get classes => new _AttributeClassSet(this);
- List<Element> get children => new FilteredElementList<Element>(this);
+ List<Element> get children => new FilteredElementList(this);
void set children(List<Element> value) {
final children = this.children;
« no previous file with comments | « sdk/lib/svg/dart2js/svg_dart2js.dart ('k') | tests/html/filteredelementlist_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698