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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: cc/ipc/surface_sequence.mojom
diff --git a/cc/ipc/surface_sequence.mojom b/cc/ipc/surface_sequence.mojom
new file mode 100644
index 0000000000000000000000000000000000000000..631fe8d7a6107ad86372cc787456a27723d3bd5f
--- /dev/null
+++ b/cc/ipc/surface_sequence.mojom
@@ -0,0 +1,15 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+module cc.mojom;
+
+// A per-surface-namespace sequence number that's used to coordinate
+// dependencies between frames. A sequence number may be satisfied once, and
+// 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
+// A surface sequence consists of an id namespace and a local sequence number.
+struct SurfaceSequence {
+ uint32 id_namespace;
+ uint32 sequence;
+};
+

Powered by Google App Engine
This is Rietveld 408576698