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..4fdb2c0132f7320eb514d16b03ecb7f0adac7b8f 100644 |
--- a/mojo/services/native_support/interfaces/process.mojom |
+++ b/mojo/services/native_support/interfaces/process.mojom |
@@ -26,23 +26,12 @@ interface Process { |
// it in with |path|. |
// TODO(vtl): Inheriting |envp| from the parent is somewhat dubious, and |
// there's also no way to just specify modifications or limit inheritance. |
- Spawn(array<uint8> path, |
- array<array<uint8>>? argv, |
- array<array<uint8>>? envp, |
- mojo.files.File? stdin_file, |
- mojo.files.File? stdout_file, |
- mojo.files.File? stderr_file, |
- ProcessController& process_controller) => (mojo.files.Error error); |
+ Spawn(array<uint8> path, array<array<uint8>>? argv, array<array<uint8>>? envp, mojo.files.File? stdin_file, mojo.files.File? stdout_file, mojo.files.File? stderr_file, ProcessController& process_controller) => (mojo.files.Error error); |
// 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 |