| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 cc.mojom; | 5 module cc.mojom; |
| 6 | 6 |
| 7 import "cc/ipc/begin_frame_args.mojom"; | 7 import "cc/ipc/begin_frame_args.mojom"; |
| 8 import "cc/ipc/selection.mojom"; | 8 import "cc/ipc/selection.mojom"; |
| 9 import "cc/ipc/surface_id.mojom"; | 9 import "cc/ipc/surface_id.mojom"; |
| 10 import "ui/latency/mojo/latency_info.mojom"; | 10 import "ui/latency/mojo/latency_info.mojom"; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 float top_controls_shown_ratio; | 27 float top_controls_shown_ratio; |
| 28 float bottom_controls_height; | 28 float bottom_controls_height; |
| 29 float bottom_controls_shown_ratio; | 29 float bottom_controls_shown_ratio; |
| 30 uint32 root_background_color; | 30 uint32 root_background_color; |
| 31 Selection selection; | 31 Selection selection; |
| 32 array<ui.mojom.LatencyInfo> latency_info; | 32 array<ui.mojom.LatencyInfo> latency_info; |
| 33 array<SurfaceId> referenced_surfaces; | 33 array<SurfaceId> referenced_surfaces; |
| 34 bool can_activate_before_dependencies; | 34 bool can_activate_before_dependencies; |
| 35 uint32 content_source_id; | 35 uint32 content_source_id; |
| 36 BeginFrameAck begin_frame_ack; | 36 BeginFrameAck begin_frame_ack; |
| 37 uint32 frame_token; |
| 37 }; | 38 }; |
| OLD | NEW |