| 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/frame_sink_id.mojom"; |
| 8 |
| 7 // A per-surface-namespace sequence number that's used to coordinate | 9 // A per-surface-namespace sequence number that's used to coordinate |
| 8 // dependencies between frames. A sequence number may be satisfied once, and | 10 // dependencies between frames. A sequence number may be satisfied once, and |
| 9 // may be depended on once. | 11 // may be depended on once. |
| 10 struct SurfaceSequence { | 12 struct SurfaceSequence { |
| 11 uint32 client_id; | 13 FrameSinkId frame_sink_id; |
| 12 uint32 sequence; | 14 uint32 sequence; |
| 13 }; | 15 }; |
| 14 | 16 |
| OLD | NEW |