cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / components / view_manager / public / interfaces / view_tree.mojom
blobd65b9214779ca81b25e2490299732c11679b33cf
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 module mojo;
7 import "components/view_manager/public/interfaces/compositor_frame.mojom";
8 import "components/view_manager/public/interfaces/surface_id.mojom";
9 import "components/view_manager/public/interfaces/view_manager_constants.mojom";
10 import "mojo/application/public/interfaces/service_provider.mojom";
11 import "network/public/interfaces/url_loader.mojom";
12 import "ui/mojo/events/input_events.mojom";
13 import "ui/mojo/ime/text_input_state.mojom";
14 import "ui/mojo/geometry/geometry.mojom";
16 struct ViewportMetrics {
17   Size size_in_pixels;
18   // A value of 0 indicates the real value is not yet available.
19   float device_pixel_ratio = 0.0;
22 struct ViewData {
23   uint32 parent_id;
24   uint32 view_id;
25   mojo.Rect bounds;
26   map<string, array<uint8>> properties;
27   // True if this view is visible. The view may not be drawn on screen (see
28   // drawn for specifics).
29   bool visible;
30   // True if this view is drawn on screen. A view is drawn if attached to the
31   // root and all ancestors (including this view) are visible.
32   bool drawn;
33   ViewportMetrics viewport_metrics;
36 enum ErrorCode {
37   NONE,
38   VALUE_IN_USE,
39   ILLEGAL_ARGUMENT,
42 // Views are identified by a uint32. The upper 16 bits are the connection id,
43 // and the lower 16 the id assigned by the client.
45 // The root view is identified with a connection id of 0, and value of 1.
46 interface ViewTree {
47   enum AccessPolicy {
48     DEFAULT = 0,
50     // An embed root has the following abilities:
51     // . The app sees all the descendants of the view the app is ebmedded at,
52     //   even those from separate connections.
53     // . The app is able to Embed() in all the descendants of the view the app
54     //   is embedded at, even those from separate connections.
55     // Only connections originating from the ViewTreeHostFactory can grant this
56     // policy.
57     EMBED_ROOT = 1,
58   };
60   // Creates a new view with the specified id. It is up to the client to ensure
61   // the id is unique to the connection (the id need not be globally unique).
62   // Additionally the connection id (embedded in |view_id|) must match that of
63   // the connection.
64   // Errors:
65   //   ERROR_CODE_VALUE_IN_USE: a view already exists with the specified id.
66   //   ERROR_CODE_ILLEGAL_ARGUMENT: The connection part of |view_id| does not
67   //     match the connection id of the client.
68   //
69   // TODO(erg): Once we have default values in mojo, make this take a map of
70   // properties.
71   CreateView(uint32 view_id) => (ErrorCode error_code);
73   // Deletes a view. This does not recurse. No hierarchy change notifications
74   // are sent as a result of this. Only the connection that created the view can
75   // delete it.
76   DeleteView(uint32 view_id) => (bool success);
78   // Sets the specified bounds of the specified view.
79   SetViewBounds(uint32 view_id, mojo.Rect bounds) => (bool success);
81   // Sets the visibility of the specified view to |visible|. Connections are
82   // allowed to change the visibility of any view they have created, as well as
83   // any of their roots.
84   SetViewVisibility(uint32 view_id, bool visible) => (bool success);
86   // Sets an individual named property. Setting an individual property to null
87   // deletes the property.
88   SetViewProperty(uint32 view_id,
89                   string name,
90                   array<uint8>? value) => (bool success);
92   // Requests a Surface for a particular view.
93   RequestSurface(uint32 view_id, Surface& surface, SurfaceClient client);
95   // Reparents a view.
96   // This fails for any of the following reasons:
97   // . |parent| or |child| does not identify a valid view.
98   // . |child| is an ancestor of |parent|.
99   // . |child| is already a child of |parent|.
100   //
101   // This may result in a connection getting OnViewDeleted(). See
102   // RemoveViewFromParent for details.
103   AddView(uint32 parent, uint32 child) => (bool success);
105   // Removes a view from its current parent. This fails if the view is not
106   // valid or the view already has no parent.
107   //
108   // Removing a view from a parent may result in OnViewDeleted() being sent to
109   // other connections. For example, connection A has views 1 and 2, with 2 a
110   // child of 1. Connection B has a root 1. If 2 is removed from 1 then B gets
111   // OnViewDeleted(). This is done as view 2 is effectively no longer visible to
112   // connection B.
113   RemoveViewFromParent(uint32 view_id) => (bool success);
115   // Reorders a view in its parent, relative to |relative_view_id| according to
116   // |direction|.
117   // Only the connection that created the view's parent can reorder its
118   // children.
119   ReorderView(uint32 view_id,
120               uint32 relative_view_id,
121               OrderDirection direction) => (bool success);
123   // Returns the views comprising the tree starting at |view_id|. |view_id| is
124   // the first result in the return value, unless |view_id| is invalid, in which
125   // case an empty vector is returned. The views are visited using a depth first
126   // search (pre-order).
127   GetViewTree(uint32 view_id) => (array<ViewData> views);
129   // A connection may grant access to a view from another connection by way of
130   // Embed(). Embed() results in a new ViewTreeClient configured with a root of
131   // |view_id|.
132   //
133   // The caller must have created |view_id|. If not the request fails and the
134   // response is false.
135   //
136   // A view may only have one embedding in it at a time. Subsequent calls to
137   // Embed() for the same view result in the currently embedded
138   // ViewTreeClient being removed. The embedded app is told this by way of
139   // OnUnembed(), which is followed by OnViewDeleted() (as the connection no
140   // longer has access to the view).
141   //
142   // The embedder can detect when the embedded app disconnects by way of
143   // OnEmbeddedAppDisconnected().
144   //
145   // When a connection embeds an app the connection no longer has privileges
146   // to access or see any of the children of the view. If the view had existing
147   // children the children are removed. The one exception is the root
148   // connection and any connections with the policy ACCESS_POLICY_EMBED_ROOT.
149   Embed(uint32 view_id, ViewTreeClient client) => (bool success);
151   SetFocus(uint32 view_id);
153   // Set text input state for the given view.
154   SetViewTextInputState(uint32 view_id, TextInputState state);
156   // Set the input method editor UI (software keyboard, etc) visibility.
157   // If state is non-null, the specified view's text input state is updated.
158   // Otherwise the existing state is used.
159   SetImeVisibility(uint32 view_id, bool visible, TextInputState? state);
161   // Sets the access policy for the next ViewTreeClient embedded in |view_id|.
162   //
163   // Not all connections are allowed to change the access policy. See each
164   // constant for specifics.
165   //
166   // policy_bitmask is a bitmask of the kAccessPolicy constants. See them for
167   // details.
168   SetAccessPolicy(uint32 view_id, uint32 policy_bitmask);
171 // Changes to views are not sent to the connection that originated the
172 // change. For example, if connection 1 changes the bounds of a view by calling
173 // SetBounds(), connection 1 does not receive OnViewBoundsChanged().
174 interface ViewTreeClient {
175   // Invoked when the client application has been embedded at |root|.
176   // See Embed() on ViewTree for more details. |tree| will be a handle back to
177   // the view manager service, unless the connection is to the root connection
178   // in which case it will be null.
179   OnEmbed(uint16 connection_id,
180           ViewData root,
181           ViewTree? tree,
182           uint32 focused_view,
183           uint32 access_policy);
185   // Invoked when the application embedded at |view| is disconnected.
186   OnEmbeddedAppDisconnected(uint32 view);
188   // Sent when another connection is embedded in the View this connection was
189   // previously embedded in. See Embed() for more information.
190   OnUnembed();
192   // Invoked when a view's bounds have changed.
193   OnViewBoundsChanged(uint32 view,
194                       mojo.Rect old_bounds,
195                       mojo.Rect new_bounds);
197   // Invoked when the viewport metrics for the view have changed.
198   // Clients are expected to propagate this to the view tree.
199   OnViewViewportMetricsChanged(mojo.ViewportMetrics old_metrics,
200                                mojo.ViewportMetrics new_metrics);
202   // Invoked when a change is done to the hierarchy. A value of 0 is used to
203   // identify a null view. For example, if the old_parent is NULL, 0 is
204   // supplied.
205   // |views| contains any views that are that the client has not been told
206   // about. This is not sent for hierarchy changes of views not known to this
207   // client or not attached to the tree.
208   OnViewHierarchyChanged(uint32 view,
209                          uint32 new_parent,
210                          uint32 old_parent,
211                          array<ViewData> views);
213   // Invoked when the order of views within a parent changes.
214   OnViewReordered(uint32 view_id,
215                   uint32 relative_view_id,
216                   OrderDirection direction);
218   // Invoked when a view is deleted.
219   OnViewDeleted(uint32 view);
221   // Invoked when the visibility of the specified view changes.
222   OnViewVisibilityChanged(uint32 view, bool visible);
224   // Invoked when a change to the visibility of |view| or one if it's ancestors
225   // is done such that the drawn state changes. This is only invoked for the
226   // top most view of a particular connection. For example, if you have the
227   // hierarchy: A -> B1 -> B2 (B2 is a child of B1 and B1 a child of A), B1/B2
228   // are from connection 2 and A from connection 1 with all views visible and
229   // drawn and the visiblity of A changes to false, then connection 2 is told
230   // the drawn state of B1 has changed (to false), but is not told anything
231   // about B2 as it's drawn state can be calculated from that of B1.
232   //
233   // NOTE: This is not invoked if OnViewVisibilityChanged() is invoked.
234   OnViewDrawnStateChanged(uint32 view, bool drawn);
236   // Invoked when a view property is changed. If this change is a removal,
237   // |new_data| is null.
238   OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data);
240   // Invoked when an event is targeted at the specified view.
241   OnViewInputEvent(uint32 view, mojo.Event event) => ();
243   OnViewFocused(uint32 focused_view_id);