| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module mojo; | 5 module mojo; |
| 6 | 6 |
| 7 import "mojo/public/interfaces/application/service_provider.mojom"; | 7 import "mojo/public/interfaces/application/service_provider.mojom"; |
| 8 import "mojo/services/public/interfaces/geometry/geometry.mojom"; | 8 import "mojo/services/geometry/public/interfaces/geometry.mojom"; |
| 9 import "mojo/services/public/interfaces/input_events/input_events.mojom"; | 9 import "mojo/services/public/interfaces/input_events/input_events.mojom"; |
| 10 import "mojo/services/surfaces/public/interfaces/surface_id.mojom"; | 10 import "mojo/services/surfaces/public/interfaces/surface_id.mojom"; |
| 11 import "mojo/services/view_manager/public/interfaces/view_manager_constants.mojo
m"; | 11 import "mojo/services/view_manager/public/interfaces/view_manager_constants.mojo
m"; |
| 12 | 12 |
| 13 struct ViewData { | 13 struct ViewData { |
| 14 uint32 parent_id; | 14 uint32 parent_id; |
| 15 uint32 view_id; | 15 uint32 view_id; |
| 16 mojo.Rect bounds; | 16 mojo.Rect bounds; |
| 17 map<string, array<uint8>> properties; | 17 map<string, array<uint8>> properties; |
| 18 // True if this view is visible. The view may not be drawn on screen (see | 18 // True if this view is visible. The view may not be drawn on screen (see |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 // NOTE: This is not invoked if OnViewVisibilityChanged() is invoked. | 189 // NOTE: This is not invoked if OnViewVisibilityChanged() is invoked. |
| 190 OnViewDrawnStateChanged(uint32 view, bool drawn); | 190 OnViewDrawnStateChanged(uint32 view, bool drawn); |
| 191 | 191 |
| 192 // Invoked when a view property is changed. If this change is a removal, | 192 // Invoked when a view property is changed. If this change is a removal, |
| 193 // |new_data| is null. | 193 // |new_data| is null. |
| 194 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); | 194 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); |
| 195 | 195 |
| 196 // Invoked when an event is targeted at the specified view. | 196 // Invoked when an event is targeted at the specified view. |
| 197 OnViewInputEvent(uint32 view, mojo.Event event) => (); | 197 OnViewInputEvent(uint32 view, mojo.Event event) => (); |
| 198 }; | 198 }; |
| OLD | NEW |