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

Side by Side Diff: tools/testing/dart/lib/android.dart

Issue 841193003: cleanup to tools/testing/dart (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: one last bit Created 5 years, 11 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 | « tools/testing/dart/launch_browser.dart ('k') | tools/testing/dart/lib/browser_controller.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 android; 5 library android;
6 6
7 import "dart:async"; 7 import 'dart:async';
8 import "dart:convert" show LineSplitter, UTF8; 8 import 'dart:convert' show LineSplitter, UTF8;
9 import "dart:core"; 9 import 'dart:core';
10 import "dart:io"; 10 import 'dart:io';
11 11
12 import "path.dart"; 12 import 'path.dart';
13 import "utils.dart"; 13 import 'utils.dart';
14 14
15 Future _executeCommand(String executable, 15 Future _executeCommand(String executable,
16 List<String> args, 16 List<String> args,
17 [String stdin = ""]) { 17 [String stdin = ""]) {
18 return _executeCommandRaw(executable, args, stdin).then((results) => null); 18 return _executeCommandRaw(executable, args, stdin).then((results) => null);
19 } 19 }
20 20
21 Future _executeCommandGetOutput(String executable, 21 Future _executeCommandGetOutput(String executable,
22 List<String> args, 22 List<String> args,
23 [String stdin = ""]) { 23 [String stdin = ""]) {
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 */ 325 */
326 class Intent { 326 class Intent {
327 String action; 327 String action;
328 String package; 328 String package;
329 String activity; 329 String activity;
330 String dataUri; 330 String dataUri;
331 331
332 Intent(this.action, this.package, this.activity, [this.dataUri]); 332 Intent(this.action, this.package, this.activity, [this.dataUri]);
333 } 333 }
334 334
OLDNEW
« no previous file with comments | « tools/testing/dart/launch_browser.dart ('k') | tools/testing/dart/lib/browser_controller.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698