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

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

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review Created 8 years, 7 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/swarm/htmlconverter_test.py ('k') | samples/third_party/dromaeo/Suites.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:dom'); 1 #import('dart:dom_deprecated');
2 #import('dart:json'); 2 #import('dart:json');
3 #import('Suites.dart'); 3 #import('Suites.dart');
4 4
5 main() { 5 main() {
6 new Dromaeo().run(); 6 new Dromaeo().run();
7 } 7 }
8 8
9 class SuiteController { 9 class SuiteController {
10 final SuiteDescription _suiteDescription; 10 final SuiteDescription _suiteDescription;
11 final HTMLIFrameElement _suiteIframe; 11 final HTMLIFrameElement _suiteIframe;
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 } 213 }
214 214
215 HTMLElement _byId(String id) { 215 HTMLElement _byId(String id) {
216 return document.getElementById(id); 216 return document.getElementById(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/swarm/htmlconverter_test.py ('k') | samples/third_party/dromaeo/Suites.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698