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

Side by Side Diff: dart/samples/swarm/Views.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/UIState.dart ('k') | dart/samples/swarm/swarm.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 // This file contains View framework classes. 5 // This file contains View framework classes.
8 // As it grows, it may need to be split into multiple files. 6 // As it grows, it may need to be split into multiple files.
9 7
10 /** A factory that creates a view from a data model. */ 8 /** A factory that creates a view from a data model. */
11 abstract class ViewFactory<D> { 9 abstract class ViewFactory<D> {
12 View newView(D item); 10 View newView(D item);
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
978 976
979 container = node.query('.dialog-body'); 977 container = node.query('.dialog-body');
980 container.nodes.add(_content.node); 978 container.nodes.add(_content.node);
981 979
982 return node; 980 return node;
983 } 981 }
984 982
985 /** Override to handle dialog done. */ 983 /** Override to handle dialog done. */
986 void onDone() { } 984 void onDone() { }
987 } 985 }
OLDNEW
« no previous file with comments | « dart/samples/swarm/UIState.dart ('k') | dart/samples/swarm/swarm.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698