Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Side by Side Diff: cc/ipc/surface_sequence.mojom

Issue 2043833002: Add SurfaceSequence mojom file to cc/ipc and edit corresponding GYP file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change based on fsamuel's feedback Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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.
Tom Sepez 2016/06/06 22:34:39 What are the consequences if an untrusted client d
xlai (Olivia) 2016/06/07 15:17:03 Do you mean the consequences when someone mishandl
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698