| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 WebKit types so that they can be serialized over IPC. IPC::ParamTraits<> | 6 // of WebKit 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 template <> | 83 template <> |
| 84 struct ParamTraits<scoped_refptr<webkit_glue::ResourceDevToolsInfo> > { | 84 struct ParamTraits<scoped_refptr<webkit_glue::ResourceDevToolsInfo> > { |
| 85 typedef scoped_refptr<webkit_glue::ResourceDevToolsInfo> param_type; | 85 typedef scoped_refptr<webkit_glue::ResourceDevToolsInfo> param_type; |
| 86 static void Write(Message* m, const param_type& p); | 86 static void Write(Message* m, const param_type& p); |
| 87 static bool Read(const Message* m, void** iter, param_type* r); | 87 static bool Read(const Message* m, void** iter, param_type* r); |
| 88 static void Log(const param_type& p, std::string* l); | 88 static void Log(const param_type& p, std::string* l); |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 template <> | 91 template <> |
| 92 struct ParamTraits<scoped_refptr<webkit_blob::BlobData > > { | |
| 93 typedef scoped_refptr<webkit_blob::BlobData> param_type; | |
| 94 static void Write(Message* m, const param_type& p); | |
| 95 static bool Read(const Message* m, void** iter, param_type* r); | |
| 96 static void Log(const param_type& p, std::string* l); | |
| 97 }; | |
| 98 | |
| 99 template <> | |
| 100 struct ParamTraits<NPVariant_Param> { | 92 struct ParamTraits<NPVariant_Param> { |
| 101 typedef NPVariant_Param param_type; | 93 typedef NPVariant_Param param_type; |
| 102 static void Write(Message* m, const param_type& p); | 94 static void Write(Message* m, const param_type& p); |
| 103 static bool Read(const Message* m, void** iter, param_type* r); | 95 static bool Read(const Message* m, void** iter, param_type* r); |
| 104 static void Log(const param_type& p, std::string* l); | 96 static void Log(const param_type& p, std::string* l); |
| 105 }; | 97 }; |
| 106 | 98 |
| 107 template <> | 99 template <> |
| 108 struct ParamTraits<NPIdentifier_Param> { | 100 struct ParamTraits<NPIdentifier_Param> { |
| 109 typedef NPIdentifier_Param param_type; | 101 typedef NPIdentifier_Param param_type; |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> { | 223 struct CONTENT_EXPORT ParamTraits<webkit_glue::PasswordForm> { |
| 232 typedef webkit_glue::PasswordForm param_type; | 224 typedef webkit_glue::PasswordForm param_type; |
| 233 static void Write(Message* m, const param_type& p); | 225 static void Write(Message* m, const param_type& p); |
| 234 static bool Read(const Message* m, void** iter, param_type* p); | 226 static bool Read(const Message* m, void** iter, param_type* p); |
| 235 static void Log(const param_type& p, std::string* l); | 227 static void Log(const param_type& p, std::string* l); |
| 236 }; | 228 }; |
| 237 | 229 |
| 238 } // namespace IPC | 230 } // namespace IPC |
| 239 | 231 |
| 240 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ | 232 #endif // CONTENT_COMMON_WEBKIT_PARAM_TRAITS_H_ |
| OLD | NEW |