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

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

Issue 2136413002: Update Surface ID Terminology (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed webkit_unit_tests Created 4 years, 5 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_CC_PARAM_TRAITS_MACROS_H_ 5 #ifndef CC_IPC_CC_PARAM_TRAITS_MACROS_H_
6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_ 6 #define CC_IPC_CC_PARAM_TRAITS_MACROS_H_
7 7
8 #include "cc/output/begin_frame_args.h" 8 #include "cc/output/begin_frame_args.h"
9 #include "cc/output/compositor_frame.h" 9 #include "cc/output/compositor_frame.h"
10 #include "cc/output/filter_operation.h" 10 #include "cc/output/filter_operation.h"
(...skipping 29 matching lines...) Expand all
40 IPC_ENUM_TRAITS_MAX_VALUE(SkXfermode::Mode, SkXfermode::kLastMode) 40 IPC_ENUM_TRAITS_MAX_VALUE(SkXfermode::Mode, SkXfermode::kLastMode)
41 IPC_ENUM_TRAITS_MAX_VALUE(cc::YUVVideoDrawQuad::ColorSpace, 41 IPC_ENUM_TRAITS_MAX_VALUE(cc::YUVVideoDrawQuad::ColorSpace,
42 cc::YUVVideoDrawQuad::COLOR_SPACE_LAST) 42 cc::YUVVideoDrawQuad::COLOR_SPACE_LAST)
43 43
44 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassId) 44 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassId)
45 IPC_STRUCT_TRAITS_MEMBER(layer_id) 45 IPC_STRUCT_TRAITS_MEMBER(layer_id)
46 IPC_STRUCT_TRAITS_MEMBER(index) 46 IPC_STRUCT_TRAITS_MEMBER(index)
47 IPC_STRUCT_TRAITS_END() 47 IPC_STRUCT_TRAITS_END()
48 48
49 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceSequence) 49 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceSequence)
50 IPC_STRUCT_TRAITS_MEMBER(id_namespace) 50 IPC_STRUCT_TRAITS_MEMBER(client_id)
51 IPC_STRUCT_TRAITS_MEMBER(sequence) 51 IPC_STRUCT_TRAITS_MEMBER(sequence)
52 IPC_STRUCT_TRAITS_END() 52 IPC_STRUCT_TRAITS_END()
53 53
54 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad) 54 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad)
55 IPC_STRUCT_TRAITS_MEMBER(material) 55 IPC_STRUCT_TRAITS_MEMBER(material)
56 IPC_STRUCT_TRAITS_MEMBER(rect) 56 IPC_STRUCT_TRAITS_MEMBER(rect)
57 IPC_STRUCT_TRAITS_MEMBER(opaque_rect) 57 IPC_STRUCT_TRAITS_MEMBER(opaque_rect)
58 IPC_STRUCT_TRAITS_MEMBER(visible_rect) 58 IPC_STRUCT_TRAITS_MEMBER(visible_rect)
59 IPC_STRUCT_TRAITS_MEMBER(needs_blending) 59 IPC_STRUCT_TRAITS_MEMBER(needs_blending)
60 IPC_STRUCT_TRAITS_MEMBER(resources) 60 IPC_STRUCT_TRAITS_MEMBER(resources)
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) 194 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences)
195 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) 195 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces)
196 IPC_STRUCT_TRAITS_END() 196 IPC_STRUCT_TRAITS_END()
197 197
198 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) 198 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData)
199 IPC_STRUCT_TRAITS_MEMBER(size) 199 IPC_STRUCT_TRAITS_MEMBER(size)
200 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) 200 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect)
201 IPC_STRUCT_TRAITS_END() 201 IPC_STRUCT_TRAITS_END()
202 202
203 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ 203 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698