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

Side by Side Diff: mojo/services/terminal/interfaces/terminal.mojom

Issue 1454113003: Require an explicit ServiceName annotation for interfaces in C++. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 [DartPackage="mojo_services"] 5 [DartPackage="mojo_services"]
6 module mojo.terminal; 6 module mojo.terminal;
7 7
8 import "files/interfaces/file.mojom"; 8 import "files/interfaces/file.mojom";
9 import "files/interfaces/types.mojom"; 9 import "files/interfaces/types.mojom";
10 import "terminal/interfaces/terminal_client.mojom"; 10 import "terminal/interfaces/terminal_client.mojom";
11 11
12 // Interface for actual terminal programs, in particular, for a single terminal 12 // Interface for actual terminal programs, in particular, for a single terminal
13 // display. For terminals that display output and are embeddable, this will 13 // display. For terminals that display output and are embeddable, this will
14 // typically be a service provided by the |ViewManagerClient| (see |OnEmbed()|). 14 // typically be a service provided by the |ViewManagerClient| (see |OnEmbed()|).
15 [ServiceName="mojo::terminal::Terminal"]
15 interface Terminal { 16 interface Terminal {
16 // Connects to the terminal. If |force| is true, it will terminate any 17 // Connects to the terminal. If |force| is true, it will terminate any
17 // existing connection. The reply is sent when |terminal| is no longer 18 // existing connection. The reply is sent when |terminal| is no longer
18 // connected. It is not successful only on "synchronous"/immediate failure, 19 // connected. It is not successful only on "synchronous"/immediate failure,
19 // e.g., if something else is already connected (|force| is false). 20 // e.g., if something else is already connected (|force| is false).
20 Connect(mojo.files.File& terminal_file, bool force) 21 Connect(mojo.files.File& terminal_file, bool force)
21 => (mojo.files.Error error); 22 => (mojo.files.Error error);
22 23
23 // Asks the terminal to connect to the given client. (|force| and response as 24 // Asks the terminal to connect to the given client. (|force| and response as
24 // are for |Connect()|.) 25 // are for |Connect()|.)
25 ConnectToClient(TerminalClient terminal_client, bool force) 26 ConnectToClient(TerminalClient terminal_client, bool force)
26 => (mojo.files.Error error); 27 => (mojo.files.Error error);
27 28
28 // Gets the size of terminal (in number of rows/columns of text). (|rows| and 29 // Gets the size of terminal (in number of rows/columns of text). (|rows| and
29 // |columns| are valid only on success.) 30 // |columns| are valid only on success.)
30 GetSize() => (mojo.files.Error error, uint32 rows, uint32 columns); 31 GetSize() => (mojo.files.Error error, uint32 rows, uint32 columns);
31 32
32 // Sets the size of terminal (in number of rows/columns of text); 0 for 33 // Sets the size of terminal (in number of rows/columns of text); 0 for
33 // rows or columns means to compute that automatically. If |reset| is true, it 34 // rows or columns means to compute that automatically. If |reset| is true, it
34 // will reset (clear) the terminal. Note that it may not set exactly the 35 // will reset (clear) the terminal. Note that it may not set exactly the
35 // requested size. (On success, the response will provide the actual set 36 // requested size. (On success, the response will provide the actual set
36 // size.) 37 // size.)
37 SetSize(uint32 rows, uint32 columns, bool reset) 38 SetSize(uint32 rows, uint32 columns, bool reset)
38 => (mojo.files.Error error, uint32 rows, uint32 columns); 39 => (mojo.files.Error error, uint32 rows, uint32 columns);
39 }; 40 };
OLDNEW
« no previous file with comments | « mojo/services/surfaces/interfaces/surfaces.mojom ('k') | mojo/services/terminal/interfaces/terminal_client.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698