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 "components/surfaces/public/interfaces/surface_id.mojom"; | 7 import "components/view_manager/public/interfaces/surface_id.mojom"; |
8 import "components/view_manager/public/interfaces/native_viewport.mojom"; | 8 import "components/view_manager/public/interfaces/native_viewport.mojom"; |
9 import "components/view_manager/public/interfaces/view_manager_constants.mojom"; | 9 import "components/view_manager/public/interfaces/view_manager_constants.mojom"; |
10 import "mojo/application/public/interfaces/service_provider.mojom"; | 10 import "mojo/application/public/interfaces/service_provider.mojom"; |
11 import "network/public/interfaces/url_loader.mojom"; | 11 import "network/public/interfaces/url_loader.mojom"; |
12 import "ui/mojo/events/input_events.mojom"; | 12 import "ui/mojo/events/input_events.mojom"; |
13 import "ui/mojo/geometry/geometry.mojom"; | 13 import "ui/mojo/geometry/geometry.mojom"; |
14 | 14 |
15 struct ViewData { | 15 struct ViewData { |
16 uint32 parent_id; | 16 uint32 parent_id; |
17 uint32 view_id; | 17 uint32 view_id; |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 | 212 |
213 // Invoked when a view property is changed. If this change is a removal, | 213 // Invoked when a view property is changed. If this change is a removal, |
214 // |new_data| is null. | 214 // |new_data| is null. |
215 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); | 215 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); |
216 | 216 |
217 // Invoked when an event is targeted at the specified view. | 217 // Invoked when an event is targeted at the specified view. |
218 OnViewInputEvent(uint32 view, mojo.Event event) => (); | 218 OnViewInputEvent(uint32 view, mojo.Event event) => (); |
219 | 219 |
220 OnViewFocused(uint32 focused_view_id); | 220 OnViewFocused(uint32 focused_view_id); |
221 }; | 221 }; |
OLD | NEW |