OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef GPU_IPC_ID_TYPE_TRAITS_H_ | |
6 #define GPU_IPC_ID_TYPE_TRAITS_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/pickle.h" | |
11 #include "gpu/command_buffer/common/id_type.h" | |
12 #include "ipc/ipc_message_utils.h" | |
13 #include "ipc/ipc_param_traits.h" | |
14 | |
15 namespace IPC { | |
16 | |
17 template <typename TypeMarker, typename WrappedType, WrappedType kInvalidValue> | |
18 struct ParamTraits<gpu::IdType<TypeMarker, WrappedType, kInvalidValue>> { | |
19 typedef gpu::IdType<TypeMarker, WrappedType, kInvalidValue> param_type; | |
dcheng
2016/02/12 19:23:17
using param_type = gpu::IdType<TypeMarker, Wrapped
Łukasz Anforowicz
2016/02/12 22:33:24
Done - good point (my poor excuse for not doing it
| |
20 typedef ParamTraits<WrappedType> base_param_traits; | |
21 static void GetSize(base::PickleSizer* sizer, const param_type& p) { | |
22 base_param_traits::GetSize(sizer, p.GetUnsafeValue()); | |
dcheng
2016/02/12 19:23:17
Use the type deducing helpers =)
GetParamSize(siz
Łukasz Anforowicz
2016/02/12 22:33:24
Doh... thanks!
Done (I also removed no longer nee
| |
23 } | |
24 static void Write(base::Pickle* m, const param_type& p) { | |
25 base_param_traits::Write(m, p.GetUnsafeValue()); | |
dcheng
2016/02/12 19:23:17
WriteParam(m, p.GetUnsafeValue()
Łukasz Anforowicz
2016/02/12 22:33:24
Done.
| |
26 } | |
27 static bool Read(const base::Pickle* m, | |
28 base::PickleIterator* iter, | |
29 param_type* r) { | |
30 WrappedType value; | |
31 if (!base_param_traits::Read(m, iter, &value)) | |
dcheng
2016/02/12 19:23:17
ReadParam(m, iter, &value)
Łukasz Anforowicz
2016/02/12 22:33:24
Done.
| |
32 return false; | |
33 *r = param_type::FromUnsafeValue(value); | |
34 return true; | |
35 } | |
36 static void Log(const param_type& p, std::string* l) { | |
37 base_param_traits::Log(p.GetUnsafeValue(), l); | |
dcheng
2016/02/12 19:23:17
LogParam(p.getUnsafeValue(), l)
Łukasz Anforowicz
2016/02/12 22:33:24
Done.
| |
38 } | |
39 }; | |
40 | |
41 } // namespace IPC | |
42 | |
43 #endif // GPU_IPC_ID_TYPE_TRAITS_H_ | |
OLD | NEW |