Chromium Code Reviews| Index: runtime/bin/process_impl.dart |
| diff --git a/runtime/bin/process_impl.dart b/runtime/bin/process_impl.dart |
| index 2fcdaabfc2ee5e64eb688fccdb64edf1c459a5f0..0cde81ff53b0833af358add9378af097dae63472 100644 |
| --- a/runtime/bin/process_impl.dart |
| +++ b/runtime/bin/process_impl.dart |
| @@ -197,9 +197,9 @@ class _Process implements Process { |
| String _path; |
| ObjectArray<String> _arguments; |
| String _workingDirectory; |
| - Socket _in; |
| - Socket _out; |
| - Socket _err; |
| + _Socket _in; // Private methods of _Socket are used. |
|
Mads Ager (google)
2012/03/14 13:34:08
This is not just a comment on this line. move to a
Bill Hesse
2012/03/14 13:46:49
Done.
|
| + _Socket _out; |
| + _Socket _err; |
| Socket _exitHandler; |
| int _pid; |
| bool _closed; |