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

Unified Diff: components/mus/public/interfaces/window_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
« no previous file with comments | « components/mus/public/interfaces/window_tree.mojom ('k') | components/mus/ws/access_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mus/public/interfaces/window_tree_host.mojom
diff --git a/components/mus/public/interfaces/view_tree_host.mojom b/components/mus/public/interfaces/window_tree_host.mojom
similarity index 66%
rename from components/mus/public/interfaces/view_tree_host.mojom
rename to components/mus/public/interfaces/window_tree_host.mojom
index 2d436bded11533008b190493b4ae643fd243b8c8..a7c7c558349722fa13917484e0e2cfd286ef324b 100644
--- a/components/mus/public/interfaces/view_tree_host.mojom
+++ b/components/mus/public/interfaces/window_tree_host.mojom
@@ -2,17 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-module mojo;
+module mus.mojom;
-import "components/mus/public/interfaces/view_tree.mojom";
+import "components/mus/public/interfaces/window_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
+// WindowTreeHost encapsulates a unique underlying platform window, with a tree
// of views.
-interface ViewTreeHost {
+interface WindowTreeHost {
// Sets the size of the platform window.
SetSize(mojo.Size size);
@@ -20,7 +20,7 @@ interface ViewTreeHost {
SetTitle(string title);
// Add and remove accelerators. When accelerators are registered the
- // ViewTreeHostClient receives the key event via OnAccelerator() rather than
+ // WindowTreeHostClient 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,
@@ -29,13 +29,13 @@ interface ViewTreeHost {
RemoveAccelerator(uint32 id);
};
-interface ViewTreeHostClient {
+interface WindowTreeHostClient {
// 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);
+interface WindowTreeHostFactory {
+ CreateWindowTreeHost(WindowTreeHost& window_tree_host,
+ WindowTreeHostClient? host_client,
+ WindowTreeClient tree_client);
};
« no previous file with comments | « components/mus/public/interfaces/window_tree.mojom ('k') | components/mus/ws/access_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698