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

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

Issue 10829459: Deprecate Math object in corelib in favor of dart:math library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « samples/swipe/swipe.dart ('k') | samples/third_party/dromaeo/common/common.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 #import('dart:html'); 1 #import('dart:html');
2 #import('dart:json'); 2 #import('dart:json');
3 #import('dart:math', prefix: 'Math');
3 #import('Suites.dart'); 4 #import('Suites.dart');
4 5
5 main() { 6 main() {
6 new Dromaeo().run(); 7 new Dromaeo().run();
7 } 8 }
8 9
9 class SuiteController { 10 class SuiteController {
10 final SuiteDescription _suiteDescription; 11 final SuiteDescription _suiteDescription;
11 final IFrameElement _suiteIframe; 12 final IFrameElement _suiteIframe;
12 13
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 } 213 }
213 214
214 Element _byId(String id) { 215 Element _byId(String id) {
215 return document.query('#$id'); 216 return document.query('#$id');
216 } 217 }
217 218
218 int get _suitesTotal { 219 int get _suitesTotal {
219 return _suiteControllers.length; 220 return _suiteControllers.length;
220 } 221 }
221 } 222 }
OLDNEW
« no previous file with comments | « samples/swipe/swipe.dart ('k') | samples/third_party/dromaeo/common/common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698