| 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/mus/public/interfaces/compositor_frame.mojom"; | 7 import "components/mus/public/interfaces/compositor_frame.mojom"; |
| 8 import "components/mus/public/interfaces/surface_id.mojom"; | 8 import "components/mus/public/interfaces/surface_id.mojom"; |
| 9 import "components/mus/public/interfaces/mus_constants.mojom"; | 9 import "components/mus/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/ime/text_input_state.mojom"; | 13 import "ui/mojo/ime/text_input_state.mojom"; |
| 14 import "ui/mojo/geometry/geometry.mojom"; | 14 import "ui/mojo/geometry/geometry.mojom"; |
| 15 | 15 |
| 16 struct ViewportMetrics { | 16 struct ViewportMetrics { |
| 17 Size size_in_pixels; | 17 Size size_in_pixels; |
| 18 // A value of 0 indicates the real value is not yet available. | 18 // A value of 0 indicates the real value is not yet available. |
| 19 float device_pixel_ratio = 0.0; | 19 float device_pixel_ratio = 0.0; |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 | 241 |
| 242 // Invoked when a view property is changed. If this change is a removal, | 242 // Invoked when a view property is changed. If this change is a removal, |
| 243 // |new_data| is null. | 243 // |new_data| is null. |
| 244 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); | 244 OnViewSharedPropertyChanged(uint32 view, string name, array<uint8>? new_data); |
| 245 | 245 |
| 246 // Invoked when an event is targeted at the specified view. | 246 // Invoked when an event is targeted at the specified view. |
| 247 OnViewInputEvent(uint32 view, mojo.Event event) => (); | 247 OnViewInputEvent(uint32 view, mojo.Event event) => (); |
| 248 | 248 |
| 249 OnViewFocused(uint32 focused_view_id); | 249 OnViewFocused(uint32 focused_view_id); |
| 250 }; | 250 }; |
| OLD | NEW |