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

Unified Diff: cc/ipc/begin_frame_args_struct_traits.h

Issue 2591013004: [cc] Add and use BeginFrameAck for DidFinishFrame. (Closed)
Patch Set: . Created 4 years 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/begin_frame_args_struct_traits.h
diff --git a/cc/ipc/begin_frame_args_struct_traits.h b/cc/ipc/begin_frame_args_struct_traits.h
index 98b02d631b5dcb8a16015ed7bbbf4de6acda9252..48b911f15996a2724a3db33013452422c1c50677 100644
--- a/cc/ipc/begin_frame_args_struct_traits.h
+++ b/cc/ipc/begin_frame_args_struct_traits.h
@@ -56,6 +56,39 @@ struct StructTraits<cc::mojom::BeginFrameArgsDataView, cc::BeginFrameArgs> {
}
};
+template <>
+struct StructTraits<cc::mojom::BeginFrameAckDataView, cc::BeginFrameAck> {
+ static uint64_t source_id(const cc::BeginFrameAck& ack) {
+ return ack.source_id;
+ }
+
+ static uint64_t sequence_number(const cc::BeginFrameAck& ack) {
+ return ack.sequence_number;
+ }
+
+ static uint64_t latest_confirmed_frame(const cc::BeginFrameAck& ack) {
+ return ack.latest_confirmed_frame;
+ }
+
+ static uint32_t remaining_frames(const cc::BeginFrameAck& ack) {
+ return ack.remaining_frames;
+ }
+
+ static bool has_damage(const cc::BeginFrameAck& ack) {
+ return ack.has_damage;
+ }
+
+ static bool Read(cc::mojom::BeginFrameAckDataView data,
+ cc::BeginFrameAck* out) {
+ out->source_id = data.source_id();
+ out->sequence_number = data.sequence_number();
+ out->latest_confirmed_frame = data.latest_confirmed_frame();
+ out->remaining_frames = data.remaining_frames();
+ out->has_damage = data.has_damage();
+ return true;
+ }
+};
+
} // namespace mojo
#endif // CC_IPC_BEGIN_FRAME_ARGS_STRUCT_TRAITS_H_

Powered by Google App Engine
This is Rietveld 408576698