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

Unified Diff: sdk/lib/html/src/_ListIterators.dart

Issue 11398002: Splitting SVG types out of dart:html. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minifying. 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/src/FilteredElementList.dart ('k') | sdk/lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/src/_ListIterators.dart
diff --git a/sdk/lib/html/src/_ListIterators.dart b/sdk/lib/html/src/_ListIterators.dart
index 3a2f052f44bce093673a98e049a1a1a5b14d0093..9812718eca33f584c67dc5918b8674c07e733ca1 100644
--- a/sdk/lib/html/src/_ListIterators.dart
+++ b/sdk/lib/html/src/_ListIterators.dart
@@ -5,8 +5,8 @@
part of html;
// Iterator for arrays with fixed size.
-class _FixedSizeListIterator<T> extends _VariableSizeListIterator<T> {
- _FixedSizeListIterator(List<T> array)
+class FixedSizeListIterator<T> extends _VariableSizeListIterator<T> {
+ FixedSizeListIterator(List<T> array)
: super(array),
_length = array.length;
« no previous file with comments | « sdk/lib/html/src/FilteredElementList.dart ('k') | sdk/lib/html/src/shared_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698