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

Side by Side Diff: dart/samples/swarm/swarmlib.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/swarm.dart ('k') | dart/samples/tests/samples/lib/layout/css.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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // 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
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library swarmlib; 5 #library("swarmlib");
6 6
7 import 'dart:coreimpl'; 7 #import('dart:coreimpl');
8 import 'dart:json'; 8 #import('dart:json');
9 import 'dart:html'; 9 #import('dart:html');
10 import 'dart:math' as Math; 10 #import('dart:math', prefix: 'Math');
11 import '../ui_lib/base/base.dart'; 11 #import('../ui_lib/base/base.dart');
12 import '../ui_lib/view/view.dart'; 12 #import('../ui_lib/view/view.dart');
13 import '../ui_lib/observable/observable.dart'; 13 #import('../ui_lib/observable/observable.dart');
14 import '../ui_lib/touch/touch.dart'; 14 #import('../ui_lib/touch/touch.dart');
15 import '../ui_lib/util/utilslib.dart'; 15 #import('../ui_lib/util/utilslib.dart');
16 16
17 part 'App.dart'; 17 #source('App.dart');
18 part 'BiIterator.dart'; 18 #source('BiIterator.dart');
19 part 'ConfigHintDialog.dart'; 19 #source('ConfigHintDialog.dart');
20 part 'HelpDialog.dart'; 20 #source('HelpDialog.dart');
21 part 'SwarmState.dart'; 21 #source('SwarmState.dart');
22 part 'SwarmViews.dart'; 22 #source('SwarmViews.dart');
23 part 'SwarmApp.dart'; 23 #source('SwarmApp.dart');
24 part 'DataSource.dart'; 24 #source('DataSource.dart');
25 part 'Decoder.dart'; 25 #source('Decoder.dart');
26 part 'UIState.dart'; 26 #source('UIState.dart');
27 part 'Views.dart'; 27 #source('Views.dart');
28 part 'CSS.dart'; 28 #source('CSS.dart');
29 29
30 // TODO(jimhug): Remove this when deploying. 30 // TODO(jimhug): Remove this when deploying.
31 part 'CannedData.dart'; 31 #source('CannedData.dart');
OLDNEW
« no previous file with comments | « dart/samples/swarm/swarm.dart ('k') | dart/samples/tests/samples/lib/layout/css.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698