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

Unified Diff: mojo/services/terminal/interfaces/terminal.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/terminal/interfaces/terminal.mojom
diff --git a/mojo/services/terminal/interfaces/terminal.mojom b/mojo/services/terminal/interfaces/terminal.mojom
index 847282f3644346b1c61954e0005ba2c17779b02e..12c773de2412a224ef665002ac67e5eb62e47623 100644
--- a/mojo/services/terminal/interfaces/terminal.mojom
+++ b/mojo/services/terminal/interfaces/terminal.mojom
@@ -18,13 +18,11 @@ interface Terminal {
// existing connection. The reply is sent when |terminal| is no longer
// connected. It is not successful only on "synchronous"/immediate failure,
// e.g., if something else is already connected (|force| is false).
- Connect(mojo.files.File& terminal_file, bool force)
- => (mojo.files.Error error);
+ Connect(mojo.files.File& terminal_file, bool force) => (mojo.files.Error error);
// Asks the terminal to connect to the given client. (|force| and response as
// are for |Connect()|.)
- ConnectToClient(TerminalClient terminal_client, bool force)
- => (mojo.files.Error error);
+ ConnectToClient(TerminalClient terminal_client, bool force) => (mojo.files.Error error);
// Gets the size of terminal (in number of rows/columns of text). (|rows| and
// |columns| are valid only on success.)
@@ -35,6 +33,5 @@ interface Terminal {
// will reset (clear) the terminal. Note that it may not set exactly the
// requested size. (On success, the response will provide the actual set
// size.)
- SetSize(uint32 rows, uint32 columns, bool reset)
- => (mojo.files.Error error, uint32 rows, uint32 columns);
+ SetSize(uint32 rows, uint32 columns, bool reset) => (mojo.files.Error error, uint32 rows, uint32 columns);
};

Powered by Google App Engine
This is Rietveld 408576698