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

Side by Side Diff: utils/testrunner/layout_test_controller.dart

Issue 11033042: Change imports etc to new syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 2 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
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 // The following set of variables should be set by the caller that 5 // The following set of variables should be set by the caller that
6 // #sources this file. 6 // #sources this file.
7 /** Whether to include elapsed time. */ 7 /** Whether to include elapsed time. */
8
9 part of test_controller;
10
8 bool includeTime; 11 bool includeTime;
9 12
10 /** Path to DRT executable. */ 13 /** Path to DRT executable. */
11 String drt; 14 String drt;
12 15
13 /** Whether to regenerate layout test files. */ 16 /** Whether to regenerate layout test files. */
14 bool regenerate; 17 bool regenerate;
15 18
16 /** Whether to output test summary. */ 19 /** Whether to output test summary. */
17 bool summarize; 20 bool summarize;
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 void runPixelLayoutTests() { 307 void runPixelLayoutTests() {
305 init(); 308 init();
306 runPixelLayoutTest(0); 309 runPixelLayoutTest(0);
307 } 310 }
308 311
309 void runTextLayoutTests() { 312 void runTextLayoutTests() {
310 init(); 313 init();
311 runTextLayoutTest(0); 314 runTextLayoutTest(0);
312 } 315 }
313 316
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698