| 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 |
| 11 // public members, or because the same type is being used in multiple | 11 // public members, or because the same type is being used in multiple |
| 12 // *_messages.h headers. | 12 // *_messages.h headers. |
| 13 | 13 |
| 14 #ifndef CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 14 #ifndef CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| 15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 15 #define CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| 16 | 16 |
| 17 #include "base/memory/ref_counted_memory.h" |
| 17 #include "content/common/content_param_traits_macros.h" | 18 #include "content/common/content_param_traits_macros.h" |
| 18 #include "third_party/WebKit/public/web/WebInputEvent.h" | 19 #include "third_party/WebKit/public/web/WebInputEvent.h" |
| 19 #include "webkit/common/cursors/webcursor.h" | 20 #include "webkit/common/cursors/webcursor.h" |
| 20 | 21 |
| 21 namespace gfx { | 22 namespace gfx { |
| 22 class Range; | 23 class Range; |
| 23 } | 24 } |
| 24 | 25 |
| 25 namespace net { | 26 namespace net { |
| 26 class IPEndPoint; | 27 class IPEndPoint; |
| 27 } | 28 } |
| 28 | 29 |
| 29 namespace IPC { | 30 namespace IPC { |
| 30 | 31 |
| 32 template<> |
| 33 struct ParamTraits<scoped_refptr<base::RefCountedMemory> > { |
| 34 typedef scoped_refptr<base::RefCountedMemory> param_type; |
| 35 static void Write(Message* m, const param_type& p); |
| 36 static bool Read(const Message* m, PickleIterator* iter, param_type* p); |
| 37 static void Log(const param_type& p, std::string* l); |
| 38 }; |
| 39 |
| 31 template <> | 40 template <> |
| 32 struct ParamTraits<net::IPEndPoint> { | 41 struct ParamTraits<net::IPEndPoint> { |
| 33 typedef net::IPEndPoint param_type; | 42 typedef net::IPEndPoint param_type; |
| 34 static void Write(Message* m, const param_type& p); | 43 static void Write(Message* m, const param_type& p); |
| 35 static bool Read(const Message* m, PickleIterator* iter, param_type* p); | 44 static bool Read(const Message* m, PickleIterator* iter, param_type* p); |
| 36 static void Log(const param_type& p, std::string* l); | 45 static void Log(const param_type& p, std::string* l); |
| 37 }; | 46 }; |
| 38 | 47 |
| 39 template <> | 48 template <> |
| 40 struct ParamTraits<gfx::Range> { | 49 struct ParamTraits<gfx::Range> { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 64 typedef WebInputEventPointer param_type; | 73 typedef WebInputEventPointer param_type; |
| 65 static void Write(Message* m, const param_type& p); | 74 static void Write(Message* m, const param_type& p); |
| 66 // Note: upon read, the event has the lifetime of the message. | 75 // Note: upon read, the event has the lifetime of the message. |
| 67 static bool Read(const Message* m, PickleIterator* iter, param_type* r); | 76 static bool Read(const Message* m, PickleIterator* iter, param_type* r); |
| 68 static void Log(const param_type& p, std::string* l); | 77 static void Log(const param_type& p, std::string* l); |
| 69 }; | 78 }; |
| 70 | 79 |
| 71 } // namespace IPC | 80 } // namespace IPC |
| 72 | 81 |
| 73 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ | 82 #endif // CONTENT_COMMON_CONTENT_PARAM_TRAITS_H_ |
| OLD | NEW |