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

Side by Side Diff: cc/ipc/compositor_frame_metadata_struct_traits.h

Issue 2707243005: Discard compositor frames from unloaded web content (Closed)
Patch Set: Add default value for source ID in frame metadata 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 #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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 static const std::vector<cc::SurfaceId>& referenced_surfaces( 104 static const std::vector<cc::SurfaceId>& referenced_surfaces(
105 const cc::CompositorFrameMetadata& metadata) { 105 const cc::CompositorFrameMetadata& metadata) {
106 return metadata.referenced_surfaces; 106 return metadata.referenced_surfaces;
107 } 107 }
108 108
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(
115 const cc::CompositorFrameMetadata& metadata) {
116 return metadata.content_source_id;
117 }
118
114 static bool Read(cc::mojom::CompositorFrameMetadataDataView data, 119 static bool Read(cc::mojom::CompositorFrameMetadataDataView data,
115 cc::CompositorFrameMetadata* out); 120 cc::CompositorFrameMetadata* out);
116 }; 121 };
117 122
118 } // namespace mojo 123 } // namespace mojo
119 124
120 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ 125 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_
OLDNEW
« no previous file with comments | « cc/ipc/compositor_frame_metadata.mojom ('k') | cc/ipc/compositor_frame_metadata_struct_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698