| Index: services/ui/public/interfaces/window_manager.mojom
|
| diff --git a/services/ui/public/interfaces/window_manager.mojom b/services/ui/public/interfaces/window_manager.mojom
|
| index 14615fcdf8d0b2663af4c0dadd5fa4591c290193..e77a3570bd7f671a6a4b18040a53e16a32f557c0 100644
|
| --- a/services/ui/public/interfaces/window_manager.mojom
|
| +++ b/services/ui/public/interfaces/window_manager.mojom
|
| @@ -35,6 +35,9 @@ interface WindowManager {
|
|
|
| // Properties used only during creation time. --------------------------------
|
|
|
| + // Whether the window should be initially focusable or not. Type: bool.
|
| + const string kFocusable_InitProperty = "init:focusable";
|
| +
|
| // Initial bounds to create the window at. If empty the WindowManager decides
|
| // the initial bounds. Type: gfx::Rect.
|
| const string kBounds_InitProperty = "init:bounds";
|
| @@ -164,6 +167,8 @@ interface WindowManager {
|
| string name,
|
| array<uint8>? value);
|
|
|
| + WmSetCanFocus(uint32 window_id, bool can_focus);
|
| +
|
| // Asks the WindowManager to create a new window.
|
| // |requesting_client_id| is the id of the client issuing the request. This
|
| // allows the window manager to track top level windows by client.
|
|
|