Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 #ifndef CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ | 5 #ifndef CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ |
| 6 #define CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ | 6 #define CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ |
| 7 | 7 |
| 8 #include "cc/ipc/compositor_frame_metadata.mojom-shared.h" | 8 #include "cc/ipc/compositor_frame_metadata.mojom-shared.h" |
| 9 #include "cc/output/compositor_frame_metadata.h" | 9 #include "cc/output/compositor_frame_metadata.h" |
| 10 | 10 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 109 static bool can_activate_before_dependencies( | 109 static bool can_activate_before_dependencies( |
| 110 const cc::CompositorFrameMetadata& metadata) { | 110 const cc::CompositorFrameMetadata& metadata) { |
| 111 return metadata.can_activate_before_dependencies; | 111 return metadata.can_activate_before_dependencies; |
| 112 } | 112 } |
| 113 | 113 |
| 114 static uint32_t content_source_id( | 114 static uint32_t content_source_id( |
| 115 const cc::CompositorFrameMetadata& metadata) { | 115 const cc::CompositorFrameMetadata& metadata) { |
| 116 return metadata.content_source_id; | 116 return metadata.content_source_id; |
| 117 } | 117 } |
| 118 | 118 |
| 119 static cc::BeginFrameAck begin_frame_ack( | |
|
dcheng
2017/03/17 05:54:02
Return a const reference here--even though it's a
Eric Seckler
2017/03/17 11:06:44
Done.
| |
| 120 const cc::CompositorFrameMetadata& metadata) { | |
| 121 return metadata.begin_frame_ack; | |
| 122 } | |
| 123 | |
| 119 static bool Read(cc::mojom::CompositorFrameMetadataDataView data, | 124 static bool Read(cc::mojom::CompositorFrameMetadataDataView data, |
| 120 cc::CompositorFrameMetadata* out); | 125 cc::CompositorFrameMetadata* out); |
| 121 }; | 126 }; |
| 122 | 127 |
| 123 } // namespace mojo | 128 } // namespace mojo |
| 124 | 129 |
| 125 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ | 130 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ |
| OLD | NEW |