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

Unified Diff: samples/swarm/DataSource.dart

Issue 14022007: Move Iterable implementation to collection. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. Merge to head. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/lib/immutable_map.dart ('k') | samples/swarm/swarmlib.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: samples/swarm/DataSource.dart
diff --git a/samples/swarm/DataSource.dart b/samples/swarm/DataSource.dart
index 2f2e8746a753ce1e8127321c23c5439013e16737..540f27119eb83fb669226a3989b1db0b38bfbe56 100644
--- a/samples/swarm/DataSource.dart
+++ b/samples/swarm/DataSource.dart
@@ -6,7 +6,7 @@ part of swarmlib;
/** The top-level collection of all sections for a user. */
// TODO(jimhug): This is known as UserData in the server model.
-class Sections extends Iterable<Section> {
+class Sections extends IterableBase<Section> {
final List<Section> _sections;
Sections(this._sections);
« no previous file with comments | « runtime/lib/immutable_map.dart ('k') | samples/swarm/swarmlib.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698