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

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, 9 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..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);
// 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