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

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

Issue 2810813004: Hide fullscreen rotation jank (Closed)
Patch Set: Evict frame instead of showing a black frame Created 3 years, 7 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 static bool root_overflow_y_hidden( 55 static bool root_overflow_y_hidden(
56 const cc::CompositorFrameMetadata& metadata) { 56 const cc::CompositorFrameMetadata& metadata) {
57 return metadata.root_overflow_y_hidden; 57 return metadata.root_overflow_y_hidden;
58 } 58 }
59 59
60 static bool may_contain_video(const cc::CompositorFrameMetadata& metadata) { 60 static bool may_contain_video(const cc::CompositorFrameMetadata& metadata) {
61 return metadata.may_contain_video; 61 return metadata.may_contain_video;
62 } 62 }
63 63
64 static bool is_fullscreen(const cc::CompositorFrameMetadata& metadata) {
65 return metadata.is_fullscreen;
66 }
67
64 static bool is_resourceless_software_draw_with_scroll_or_animation( 68 static bool is_resourceless_software_draw_with_scroll_or_animation(
65 const cc::CompositorFrameMetadata& metadata) { 69 const cc::CompositorFrameMetadata& metadata) {
66 return metadata.is_resourceless_software_draw_with_scroll_or_animation; 70 return metadata.is_resourceless_software_draw_with_scroll_or_animation;
67 } 71 }
68 72
73 static gfx::Size device_viewport_size(
74 const cc::CompositorFrameMetadata& metadata) {
75 return metadata.device_viewport_size;
76 }
77
69 static float top_controls_height( 78 static float top_controls_height(
70 const cc::CompositorFrameMetadata& metadata) { 79 const cc::CompositorFrameMetadata& metadata) {
71 return metadata.top_controls_height; 80 return metadata.top_controls_height;
72 } 81 }
73 82
74 static float top_controls_shown_ratio( 83 static float top_controls_shown_ratio(
75 const cc::CompositorFrameMetadata& metadata) { 84 const cc::CompositorFrameMetadata& metadata) {
76 return metadata.top_controls_shown_ratio; 85 return metadata.top_controls_shown_ratio;
77 } 86 }
78 87
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 return metadata.frame_token; 139 return metadata.frame_token;
131 } 140 }
132 141
133 static bool Read(cc::mojom::CompositorFrameMetadataDataView data, 142 static bool Read(cc::mojom::CompositorFrameMetadataDataView data,
134 cc::CompositorFrameMetadata* out); 143 cc::CompositorFrameMetadata* out);
135 }; 144 };
136 145
137 } // namespace mojo 146 } // namespace mojo
138 147
139 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_ 148 #endif // CC_IPC_COMPOSITOR_FRAME_METADATA_STRUCT_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698