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

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

Issue 2285433002: Use compositor_frame typemap in Blink (Closed)
Patch Set: Fixed android_clang bot failure Created 4 years, 3 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_SHARED_QUAD_STATE_STRUCT_TRAITS_H_ 5 #ifndef CC_IPC_SHARED_QUAD_STATE_STRUCT_TRAITS_H_
6 #define CC_IPC_SHARED_QUAD_STATE_STRUCT_TRAITS_H_ 6 #define CC_IPC_SHARED_QUAD_STATE_STRUCT_TRAITS_H_
7 7
8 #include "cc/ipc/shared_quad_state.mojom.h" 8 #include "cc/ipc/shared_quad_state.mojom-shared.h"
9 #include "cc/quads/shared_quad_state.h" 9 #include "cc/quads/shared_quad_state.h"
10 10
11 namespace mojo { 11 namespace mojo {
12 12
13 struct OptSharedQuadState { 13 struct OptSharedQuadState {
14 const cc::SharedQuadState* sqs; 14 const cc::SharedQuadState* sqs;
15 }; 15 };
16 16
17 template <> 17 template <>
18 struct StructTraits<cc::mojom::SharedQuadStateDataView, OptSharedQuadState> { 18 struct StructTraits<cc::mojom::SharedQuadStateDataView, OptSharedQuadState> {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 return false; 104 return false;
105 out->blend_mode = static_cast<SkXfermode::Mode>(data.blend_mode()); 105 out->blend_mode = static_cast<SkXfermode::Mode>(data.blend_mode());
106 out->sorting_context_id = data.sorting_context_id(); 106 out->sorting_context_id = data.sorting_context_id();
107 return true; 107 return true;
108 } 108 }
109 }; 109 };
110 110
111 } // namespace mojo 111 } // namespace mojo
112 112
113 #endif // CC_IPC_SHARED_QUAD_STATE_STRUCT_TRAITS_H_ 113 #endif // CC_IPC_SHARED_QUAD_STATE_STRUCT_TRAITS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698