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

Side by Side Diff: dart/samples/swarm/SwarmState.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/samples/swarm/SwarmApp.dart ('k') | dart/samples/swarm/SwarmViews.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 part of swarmlib;
2
3 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
4 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
5 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
6 4
7 /** 5 /**
8 * The top-level class for the UI state. UI state is essentially a "model" from 6 * The top-level class for the UI state. UI state is essentially a "model" from
9 * the view's perspective but whose data just describes the UI itself. It 7 * the view's perspective but whose data just describes the UI itself. It
10 * contains data like the currently selected story, etc. 8 * contains data like the currently selected story, etc.
11 */ 9 */
12 // TODO(jimhug): Split the two classes here into framework and app-specific. 10 // TODO(jimhug): Split the two classes here into framework and app-specific.
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 _feedIterator = new BiIterator<Feed>(_sectionIterator.current.feeds, 288 _feedIterator = new BiIterator<Feed>(_sectionIterator.current.feeds,
291 _feedIterator.currentIndex.listeners); 289 _feedIterator.currentIndex.listeners);
292 _articleIterator = 290 _articleIterator =
293 new BiIterator<Article>(_feedIterator.current.articles, 291 new BiIterator<Article>(_feedIterator.current.articles,
294 _articleIterator.currentIndex.listeners); 292 _articleIterator.currentIndex.listeners);
295 } 293 }
296 294
297 Section get currentSection => _sectionIterator.current; 295 Section get currentSection => _sectionIterator.current;
298 Feed get currentFeed => _feedIterator.current; 296 Feed get currentFeed => _feedIterator.current;
299 } 297 }
OLDNEW
« no previous file with comments | « dart/samples/swarm/SwarmApp.dart ('k') | dart/samples/swarm/SwarmViews.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698