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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 p.Serialize(m); | 51 p.Serialize(m); |
52 } | 52 } |
53 static bool Read(const Message* m, PickleIterator* iter, param_type* r) { | 53 static bool Read(const Message* m, PickleIterator* iter, param_type* r) { |
54 return r->Deserialize(iter); | 54 return r->Deserialize(iter); |
55 } | 55 } |
56 static void Log(const param_type& p, std::string* l) { | 56 static void Log(const param_type& p, std::string* l) { |
57 l->append("<WebCursor>"); | 57 l->append("<WebCursor>"); |
58 } | 58 } |
59 }; | 59 }; |
60 | 60 |
61 typedef const WebKit::WebInputEvent* WebInputEventPointer; | 61 typedef const blink::WebInputEvent* WebInputEventPointer; |
62 template <> | 62 template <> |
63 struct ParamTraits<WebInputEventPointer> { | 63 struct ParamTraits<WebInputEventPointer> { |
64 typedef WebInputEventPointer param_type; | 64 typedef WebInputEventPointer param_type; |
65 static void Write(Message* m, const param_type& p); | 65 static void Write(Message* m, const param_type& p); |
66 // Note: upon read, the event has the lifetime of the message. | 66 // Note: upon read, the event has the lifetime of the message. |
67 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | 67 static bool Read(const Message* m, PickleIterator* iter, param_type* r); |
68 static void Log(const param_type& p, std::string* l); | 68 static void Log(const param_type& p, std::string* l); |
69 }; | 69 }; |
70 | 70 |
71 } // namespace IPC | 71 } // namespace IPC |
72 | 72 |
73 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 73 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
OLD | NEW |