Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 module cc.mojom; | |
| 6 | |
| 7 // A per-surface-namespace sequence number that's used to coordinate | |
| 8 // dependencies between frames. A sequence number may be satisfied once, and | |
| 9 // may be depended on once. | |
| 10 // A surface sequence consists of an id namespace and a local sequence number. | |
| 11 struct SurfaceSequence { | |
| 12 uint32 id_namespace; | |
| 13 uint32 sequence; | |
| 14 }; | |
| 15 | |
| OLD | NEW |