OLD | NEW |
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 // This file is used to define IPC::ParamTraits<> specializations for a number | 5 // This file is used to define IPC::ParamTraits<> specializations for a number |
6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> | 6 // of types so that they can be serialized over IPC. IPC::ParamTraits<> |
7 // specializations for basic types (like int and std::string) and types in the | 7 // specializations for basic types (like int and std::string) and types in the |
8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains | 8 // 'base' project can be found in ipc/ipc_message_utils.h. This file contains |
9 // specializations for types that are used by the content code, and which need | 9 // specializations for types that are used by the content code, and which need |
10 // manual serialization code. This is usually because they're not structs with | 10 // manual serialization code. This is usually because they're not structs with |
(...skipping 12 matching lines...) Expand all Loading... |
23 } | 23 } |
24 | 24 |
25 namespace IPC { | 25 namespace IPC { |
26 | 26 |
27 template <> | 27 template <> |
28 struct ParamTraits<content::WebCursor> { | 28 struct ParamTraits<content::WebCursor> { |
29 typedef content::WebCursor param_type; | 29 typedef content::WebCursor param_type; |
30 static void Write(Message* m, const param_type& p) { | 30 static void Write(Message* m, const param_type& p) { |
31 p.Serialize(m); | 31 p.Serialize(m); |
32 } | 32 } |
33 static bool Read(const Message* m, PickleIterator* iter, param_type* r) { | 33 static bool Read(const Message* m, |
| 34 base::PickleIterator* iter, |
| 35 param_type* r) { |
34 return r->Deserialize(iter); | 36 return r->Deserialize(iter); |
35 } | 37 } |
36 static void Log(const param_type& p, std::string* l) { | 38 static void Log(const param_type& p, std::string* l) { |
37 l->append("<WebCursor>"); | 39 l->append("<WebCursor>"); |
38 } | 40 } |
39 }; | 41 }; |
40 | 42 |
41 typedef const blink::WebInputEvent* WebInputEventPointer; | 43 typedef const blink::WebInputEvent* WebInputEventPointer; |
42 template <> | 44 template <> |
43 struct ParamTraits<WebInputEventPointer> { | 45 struct ParamTraits<WebInputEventPointer> { |
44 typedef WebInputEventPointer param_type; | 46 typedef WebInputEventPointer param_type; |
45 static void Write(Message* m, const param_type& p); | 47 static void Write(Message* m, const param_type& p); |
46 // Note: upon read, the event has the lifetime of the message. | 48 // Note: upon read, the event has the lifetime of the message. |
47 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | 49 static bool Read(const Message* m, base::PickleIterator* iter, param_type* r); |
48 static void Log(const param_type& p, std::string* l); | 50 static void Log(const param_type& p, std::string* l); |
49 }; | 51 }; |
50 | 52 |
51 } // namespace IPC | 53 } // namespace IPC |
52 | 54 |
53 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 55 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
OLD | NEW |