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

Unified Diff: mojo/services/native_support/interfaces/process.mojom

Issue 1741963002: Auto-formatted all .mojom files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 10 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
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

Powered by Google App Engine
This is Rietveld 408576698