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

Unified Diff: runtime/bin/process_impl.dart

Issue 9285017: Comment and white-space cleanup in IO libraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More of the same. Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/output_stream.dart ('k') | runtime/bin/socket.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_impl.dart
diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart
index dc1f94524fc08f3e1187abd2d6e3621e7b108425..cbbc3879a4a48e40c8babb1867e6d2da817dcf79 100644
--- a/runtime/bin/process_impl.dart
+++ b/runtime/bin/process_impl.dart
@@ -10,8 +10,8 @@ class _ProcessStartStatus {
class _Process implements Process {
- _Process.start(String path,
- List<String> arguments,
+ _Process.start(String path,
+ List<String> arguments,
[String workingDirectory]) {
if (path is !String) {
throw new ProcessException("Path is not a String: $path");
@@ -59,13 +59,13 @@ class _Process implements Process {
void start() {
var status = new _ProcessStartStatus();
- bool success = _start(_path,
- _arguments,
- _workingDirectory,
- _in,
- _out,
- _err,
- _exitHandler,
+ bool success = _start(_path,
+ _arguments,
+ _workingDirectory,
+ _in,
+ _out,
+ _err,
+ _exitHandler,
status);
if (!success) {
close();
« no previous file with comments | « runtime/bin/output_stream.dart ('k') | runtime/bin/socket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698