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

Unified Diff: mojo/services/terminal/public/interfaces/terminal.mojom

Issue 1394303004: Move //mojo/services/X/public/... to //mojo/services/X/... (part 3). (Closed) Base URL: https://github.com/domokit/mojo.git@no_public_2-x-no_public_1
Patch Set: Created 5 years, 2 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/public/interfaces/terminal.mojom
diff --git a/mojo/services/terminal/public/interfaces/terminal.mojom b/mojo/services/terminal/public/interfaces/terminal.mojom
deleted file mode 100644
index c9c928a5f351921df1adf9412ce417d02479df5a..0000000000000000000000000000000000000000
--- a/mojo/services/terminal/public/interfaces/terminal.mojom
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-[DartPackage="mojo_services"]
-module mojo.terminal;
-
-import "files/interfaces/file.mojom";
-import "files/interfaces/types.mojom";
-import "terminal/public/interfaces/terminal_client.mojom";
-
-// Interface for actual terminal programs, in particular, for a single terminal
-// display. For terminals that display output and are embeddable, this will
-// typically be a service provided by the |ViewManagerClient| (see |OnEmbed()|).
-interface Terminal {
- // Connects to the terminal. If |force| is true, it will terminate any
- // 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);
-
- // 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);
-
- // Gets the size of terminal (in number of rows/columns of text). (|rows| and
- // |columns| are valid only on success.)
- GetSize() => (mojo.files.Error error, uint32 rows, uint32 columns);
-
- // Sets the size of terminal (in number of rows/columns of text); 0 for
- // rows or columns means to compute that automatically. If |reset| is true, it
- // 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);
-};
« no previous file with comments | « mojo/services/terminal/public/interfaces/BUILD.gn ('k') | mojo/services/terminal/public/interfaces/terminal_client.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698