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

Side by Side Diff: samples/third_party/dromaeo/Dromaeo.dart

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error 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
OLDNEW
1 #import('dart:html'); 1 import 'dart:html';
2 #import('dart:json'); 2 import 'dart:json';
3 #import('dart:math', prefix: 'Math'); 3 import 'dart:math' as Math;
4 #import('Suites.dart'); 4 import 'Suites.dart';
5 5
6 main() { 6 main() {
7 new Dromaeo().run(); 7 new Dromaeo().run();
8 } 8 }
9 9
10 class SuiteController { 10 class SuiteController {
11 final SuiteDescription _suiteDescription; 11 final SuiteDescription _suiteDescription;
12 final IFrameElement _suiteIframe; 12 final IFrameElement _suiteIframe;
13 13
14 DivElement _element; 14 DivElement _element;
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 } 213 }
214 214
215 Element _byId(String id) { 215 Element _byId(String id) {
216 return document.query('#$id'); 216 return document.query('#$id');
217 } 217 }
218 218
219 int get _suitesTotal { 219 int get _suitesTotal {
220 return _suiteControllers.length; 220 return _suiteControllers.length;
221 } 221 }
222 } 222 }
OLDNEW
« no previous file with comments | « samples/tests/samples/chat/chat_server_test.dart ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698