Chromium Code Reviews| Index: mojo/services/native_support/interfaces/process.mojom |
| diff --git a/mojo/services/native_support/interfaces/process.mojom b/mojo/services/native_support/interfaces/process.mojom |
| index b68b7da99b4fa8744bb4875a863e4b86af75ad63..f90ec0c19337819cca53002a44342586cecb7761 100644 |
| --- a/mojo/services/native_support/interfaces/process.mojom |
| +++ b/mojo/services/native_support/interfaces/process.mojom |
| @@ -32,17 +32,18 @@ interface Process { |
| mojo.files.File? stdin_file, |
| mojo.files.File? stdout_file, |
| mojo.files.File? stderr_file, |
| - ProcessController& process_controller) => (mojo.files.Error error); |
| + ProcessController& process_controller) |
| + => (mojo.files.Error error); |
|
jamesr
2016/03/09 19:18:08
slightly odd to push the return to a new line when
|
| // Like |Spawn()|, except that the child's stdin/stdout/stderr are redirected |
| // from/to |terminal_file|, which should be a |mojo.files.File| for a terminal |
| // (i.e., one that behaves like one, including responding to the required |
| // ioctls). |
| - SpawnWithTerminal( |
| - array<uint8> path, |
| - array<array<uint8>>? argv, |
| - array<array<uint8>>? envp, |
| - mojo.files.File terminal_file, |
| - ProcessController& process_controller) => (mojo.files.Error error); |
| + SpawnWithTerminal(array<uint8> path, |
| + array<array<uint8>>? argv, |
| + array<array<uint8>>? envp, |
| + mojo.files.File terminal_file, |
| + ProcessController& process_controller) |
| + => (mojo.files.Error error); |
| }; |
| // Interface for controlling a process started by one of |Process|'s facilities |