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

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

Issue 2740833005: [cc] Pass on BeginFrameAcks from CompositorEBFS through RWHVAura, DFH. (Closed)
Patch Set: address security comments Created 3 years, 9 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
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 "mojo/common/time.mojom"; 7 import "mojo/common/time.mojom";
8 8
9 enum BeginFrameArgsType { 9 enum BeginFrameArgsType {
10 INVALID, 10 INVALID,
11 NORMAL, 11 NORMAL,
12 MISSED, 12 MISSED,
13 BEGIN_FRAME_ARGS_TYPE_MAX 13 BEGIN_FRAME_ARGS_TYPE_MAX
14 }; 14 };
15 15
16 // See cc/output/begin_frame_args.h. 16 // See cc/output/begin_frame_args.h.
17 struct BeginFrameArgs { 17 struct BeginFrameArgs {
18 mojo.common.mojom.TimeTicks frame_time; 18 mojo.common.mojom.TimeTicks frame_time;
19 mojo.common.mojom.TimeTicks deadline; 19 mojo.common.mojom.TimeTicks deadline;
20 mojo.common.mojom.TimeDelta interval; 20 mojo.common.mojom.TimeDelta interval;
21 uint64 sequence_number; 21 uint64 sequence_number;
22 uint32 source_id; 22 uint32 source_id;
23 BeginFrameArgsType type; 23 BeginFrameArgsType type;
24 bool on_critical_path; 24 bool on_critical_path;
25 }; 25 };
26
27 // See cc/output/begin_frame_args.h.
28 struct BeginFrameAck {
29 uint64 sequence_number;
30 uint64 latest_confirmed_sequence_number;
31 uint32 source_id;
32 // |has_damage| is implicit through IPC message name, so not transmitted.
33 };
OLDNEW
« no previous file with comments | « no previous file | cc/ipc/begin_frame_args.typemap » ('j') | content/browser/renderer_host/render_widget_host_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698