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

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

Issue 2783973002: Moving LatencyInfo into a separate component. (Closed)
Patch Set: Rebase again Created 3 years, 8 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/ipc/DEPS ('k') | cc/ipc/cc_serialization_perftest.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 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/base/filter_operation.h" 8 #include "cc/base/filter_operation.h"
9 #include "cc/output/begin_frame_args.h" 9 #include "cc/output/begin_frame_args.h"
10 #include "cc/output/compositor_frame.h" 10 #include "cc/output/compositor_frame.h"
11 #include "cc/quads/debug_border_draw_quad.h" 11 #include "cc/quads/debug_border_draw_quad.h"
12 #include "cc/quads/draw_quad.h" 12 #include "cc/quads/draw_quad.h"
13 #include "cc/quads/render_pass.h" 13 #include "cc/quads/render_pass.h"
14 #include "cc/quads/shared_quad_state.h" 14 #include "cc/quads/shared_quad_state.h"
15 #include "cc/quads/solid_color_draw_quad.h" 15 #include "cc/quads/solid_color_draw_quad.h"
16 #include "cc/quads/stream_video_draw_quad.h" 16 #include "cc/quads/stream_video_draw_quad.h"
17 #include "cc/quads/surface_draw_quad.h" 17 #include "cc/quads/surface_draw_quad.h"
18 #include "cc/quads/texture_draw_quad.h" 18 #include "cc/quads/texture_draw_quad.h"
19 #include "cc/quads/tile_draw_quad.h" 19 #include "cc/quads/tile_draw_quad.h"
20 #include "cc/quads/yuv_video_draw_quad.h" 20 #include "cc/quads/yuv_video_draw_quad.h"
21 #include "cc/resources/resource_format.h" 21 #include "cc/resources/resource_format.h"
22 #include "cc/resources/returned_resource.h" 22 #include "cc/resources/returned_resource.h"
23 #include "cc/resources/transferable_resource.h" 23 #include "cc/resources/transferable_resource.h"
24 #include "cc/surfaces/surface_id.h" 24 #include "cc/surfaces/surface_id.h"
25 #include "cc/surfaces/surface_info.h" 25 #include "cc/surfaces/surface_info.h"
26 #include "cc/surfaces/surface_sequence.h" 26 #include "cc/surfaces/surface_sequence.h"
27 #include "ui/events/ipc/latency_info_param_traits.h"
28 #include "ui/gfx/ipc/color/gfx_param_traits.h" 27 #include "ui/gfx/ipc/color/gfx_param_traits.h"
29 #include "ui/gfx/ipc/gfx_param_traits.h" 28 #include "ui/gfx/ipc/gfx_param_traits.h"
30 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h" 29 #include "ui/gfx/ipc/skia/gfx_skia_param_traits.h"
30 #include "ui/latency/ipc/latency_info_param_traits.h"
31 31
32 #undef IPC_MESSAGE_EXPORT 32 #undef IPC_MESSAGE_EXPORT
33 #define IPC_MESSAGE_EXPORT CC_IPC_EXPORT 33 #define IPC_MESSAGE_EXPORT CC_IPC_EXPORT
34 34
35 IPC_ENUM_TRAITS_MAX_VALUE(cc::DrawQuad::Material, cc::DrawQuad::MATERIAL_LAST) 35 IPC_ENUM_TRAITS_MAX_VALUE(cc::DrawQuad::Material, cc::DrawQuad::MATERIAL_LAST)
36 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType, 36 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType,
37 cc::FilterOperation::FILTER_TYPE_LAST) 37 cc::FilterOperation::FILTER_TYPE_LAST)
38 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX) 38 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX)
39 39
40 // TODO(fsamuel): This trait belongs with skia code. 40 // TODO(fsamuel): This trait belongs with skia code.
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio) 203 IPC_STRUCT_TRAITS_MEMBER(bottom_controls_shown_ratio)
204 IPC_STRUCT_TRAITS_MEMBER(root_background_color) 204 IPC_STRUCT_TRAITS_MEMBER(root_background_color)
205 IPC_STRUCT_TRAITS_MEMBER(selection) 205 IPC_STRUCT_TRAITS_MEMBER(selection)
206 IPC_STRUCT_TRAITS_MEMBER(latency_info) 206 IPC_STRUCT_TRAITS_MEMBER(latency_info)
207 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces) 207 IPC_STRUCT_TRAITS_MEMBER(referenced_surfaces)
208 IPC_STRUCT_TRAITS_MEMBER(content_source_id) 208 IPC_STRUCT_TRAITS_MEMBER(content_source_id)
209 IPC_STRUCT_TRAITS_MEMBER(begin_frame_ack) 209 IPC_STRUCT_TRAITS_MEMBER(begin_frame_ack)
210 IPC_STRUCT_TRAITS_END() 210 IPC_STRUCT_TRAITS_END()
211 211
212 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_ 212 #endif // CC_IPC_CC_PARAM_TRAITS_MACROS_H_
OLDNEW
« no previous file with comments | « cc/ipc/DEPS ('k') | cc/ipc/cc_serialization_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698