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

Side by Side Diff: content/common/cc_messages.h

Issue 1387283002: cc: Remove redundant is_overlay arguments (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Undo changes on overlay_strategy_single_on_top.cc Created 5 years, 2 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
« no previous file with comments | « cc/test/render_pass_test_utils.cc ('k') | content/common/cc_messages.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // IPC Messages sent between compositor instances. 5 // IPC Messages sent between compositor instances.
6 6
7 #include "cc/output/begin_frame_args.h" 7 #include "cc/output/begin_frame_args.h"
8 #include "cc/output/compositor_frame.h" 8 #include "cc/output/compositor_frame.h"
9 #include "cc/output/compositor_frame_ack.h" 9 #include "cc/output/compositor_frame_ack.h"
10 #include "cc/output/filter_operation.h" 10 #include "cc/output/filter_operation.h"
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 IPC_STRUCT_TRAITS_BEGIN(cc::DebugBorderDrawQuad) 180 IPC_STRUCT_TRAITS_BEGIN(cc::DebugBorderDrawQuad)
181 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 181 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
182 IPC_STRUCT_TRAITS_MEMBER(color) 182 IPC_STRUCT_TRAITS_MEMBER(color)
183 IPC_STRUCT_TRAITS_MEMBER(width) 183 IPC_STRUCT_TRAITS_MEMBER(width)
184 IPC_STRUCT_TRAITS_END() 184 IPC_STRUCT_TRAITS_END()
185 185
186 IPC_STRUCT_TRAITS_BEGIN(cc::IOSurfaceDrawQuad) 186 IPC_STRUCT_TRAITS_BEGIN(cc::IOSurfaceDrawQuad)
187 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 187 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
188 IPC_STRUCT_TRAITS_MEMBER(io_surface_size) 188 IPC_STRUCT_TRAITS_MEMBER(io_surface_size)
189 IPC_STRUCT_TRAITS_MEMBER(orientation) 189 IPC_STRUCT_TRAITS_MEMBER(orientation)
190 IPC_STRUCT_TRAITS_MEMBER(allow_overlay)
191 IPC_STRUCT_TRAITS_END() 190 IPC_STRUCT_TRAITS_END()
192 191
193 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) 192 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad)
194 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) 193 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad)
195 IPC_STRUCT_TRAITS_MEMBER(render_pass_id) 194 IPC_STRUCT_TRAITS_MEMBER(render_pass_id)
196 IPC_STRUCT_TRAITS_MEMBER(mask_uv_scale) 195 IPC_STRUCT_TRAITS_MEMBER(mask_uv_scale)
197 IPC_STRUCT_TRAITS_MEMBER(mask_texture_size) 196 IPC_STRUCT_TRAITS_MEMBER(mask_texture_size)
198 IPC_STRUCT_TRAITS_MEMBER(filters) 197 IPC_STRUCT_TRAITS_MEMBER(filters)
199 IPC_STRUCT_TRAITS_MEMBER(filters_scale) 198 IPC_STRUCT_TRAITS_MEMBER(filters_scale)
200 IPC_STRUCT_TRAITS_MEMBER(background_filters) 199 IPC_STRUCT_TRAITS_MEMBER(background_filters)
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 261
263 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) 262 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource)
264 IPC_STRUCT_TRAITS_MEMBER(id) 263 IPC_STRUCT_TRAITS_MEMBER(id)
265 IPC_STRUCT_TRAITS_MEMBER(format) 264 IPC_STRUCT_TRAITS_MEMBER(format)
266 IPC_STRUCT_TRAITS_MEMBER(filter) 265 IPC_STRUCT_TRAITS_MEMBER(filter)
267 IPC_STRUCT_TRAITS_MEMBER(size) 266 IPC_STRUCT_TRAITS_MEMBER(size)
268 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder) 267 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder)
269 IPC_STRUCT_TRAITS_MEMBER(read_lock_fences_enabled) 268 IPC_STRUCT_TRAITS_MEMBER(read_lock_fences_enabled)
270 IPC_STRUCT_TRAITS_MEMBER(is_repeated) 269 IPC_STRUCT_TRAITS_MEMBER(is_repeated)
271 IPC_STRUCT_TRAITS_MEMBER(is_software) 270 IPC_STRUCT_TRAITS_MEMBER(is_software)
272 IPC_STRUCT_TRAITS_MEMBER(allow_overlay) 271 IPC_STRUCT_TRAITS_MEMBER(is_overlay_candidate)
273 IPC_STRUCT_TRAITS_END() 272 IPC_STRUCT_TRAITS_END()
274 273
275 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) 274 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource)
276 IPC_STRUCT_TRAITS_MEMBER(id) 275 IPC_STRUCT_TRAITS_MEMBER(id)
277 IPC_STRUCT_TRAITS_MEMBER(sync_point) 276 IPC_STRUCT_TRAITS_MEMBER(sync_point)
278 IPC_STRUCT_TRAITS_MEMBER(count) 277 IPC_STRUCT_TRAITS_MEMBER(count)
279 IPC_STRUCT_TRAITS_MEMBER(lost) 278 IPC_STRUCT_TRAITS_MEMBER(lost)
280 IPC_STRUCT_TRAITS_END() 279 IPC_STRUCT_TRAITS_END()
281 280
282 IPC_STRUCT_TRAITS_BEGIN(cc::ViewportSelectionBound) 281 IPC_STRUCT_TRAITS_BEGIN(cc::ViewportSelectionBound)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
320 IPC_STRUCT_TRAITS_MEMBER(latency_info) 319 IPC_STRUCT_TRAITS_MEMBER(latency_info)
321 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) 320 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences)
322 IPC_STRUCT_TRAITS_END() 321 IPC_STRUCT_TRAITS_END()
323 322
324 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) 323 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData)
325 IPC_STRUCT_TRAITS_MEMBER(mailbox) 324 IPC_STRUCT_TRAITS_MEMBER(mailbox)
326 IPC_STRUCT_TRAITS_MEMBER(sync_point) 325 IPC_STRUCT_TRAITS_MEMBER(sync_point)
327 IPC_STRUCT_TRAITS_MEMBER(size) 326 IPC_STRUCT_TRAITS_MEMBER(size)
328 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) 327 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect)
329 IPC_STRUCT_TRAITS_END() 328 IPC_STRUCT_TRAITS_END()
OLDNEW
« no previous file with comments | « cc/test/render_pass_test_utils.cc ('k') | content/common/cc_messages.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698