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

Unified Diff: components/mus/public/interfaces/view_tree_host.mojom

Issue 1406153004: components/mus/public/interfaces View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet another rebase 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: components/mus/public/interfaces/view_tree_host.mojom
diff --git a/components/mus/public/interfaces/view_tree_host.mojom b/components/mus/public/interfaces/view_tree_host.mojom
deleted file mode 100644
index 2d436bded11533008b190493b4ae643fd243b8c8..0000000000000000000000000000000000000000
--- a/components/mus/public/interfaces/view_tree_host.mojom
+++ /dev/null
@@ -1,41 +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.
-
-module mojo;
-
-import "components/mus/public/interfaces/view_tree.mojom";
-import "ui/mojo/events/input_event_constants.mojom";
-import "ui/mojo/events/input_events.mojom";
-import "ui/mojo/events/input_key_codes.mojom";
-import "ui/mojo/geometry/geometry.mojom";
-
-// ViewTreeHost encapsulates a unique underlying platform window, with a tree
-// of views.
-interface ViewTreeHost {
- // Sets the size of the platform window.
- SetSize(mojo.Size size);
-
- // Sets a title string to be displayed on the platform window.
- SetTitle(string title);
-
- // Add and remove accelerators. When accelerators are registered the
- // ViewTreeHostClient receives the key event via OnAccelerator() rather than
- // the focused view. The id is defined by the client and can be used to more
- // easily identify the accelerator's action.
- AddAccelerator(uint32 id,
- mojo.KeyboardCode keyboard_code,
- mojo.EventFlags flags);
- RemoveAccelerator(uint32 id);
-};
-
-interface ViewTreeHostClient {
- // An accelerator registered via AddAccelerator() has been triggered.
- OnAccelerator(uint32 id, mojo.Event event);
-};
-
-interface ViewTreeHostFactory {
- CreateWindowTreeHost(ViewTreeHost& view_tree_host,
- ViewTreeHostClient? host_client,
- ViewTreeClient tree_client);
-};
« no previous file with comments | « components/mus/public/interfaces/view_tree.mojom ('k') | components/mus/public/interfaces/window_manager.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698