| 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);
|
| };
|
|
|