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 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 shared by more than one child process. | 9 // specializations for types that are shared by more than one child process. |
10 | 10 |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 LogParam(p.handle, l); | 258 LogParam(p.handle, l); |
259 l->append(", "); | 259 l->append(", "); |
260 LogParam(p.sequence_num, l); | 260 LogParam(p.sequence_num, l); |
261 l->append(")"); | 261 l->append(")"); |
262 } | 262 } |
263 }; | 263 }; |
264 #endif | 264 #endif |
265 | 265 |
266 // Traits for URLRequestStatus | 266 // Traits for URLRequestStatus |
267 template <> | 267 template <> |
268 struct ParamTraits<URLRequestStatus> { | 268 struct ParamTraits<net::URLRequestStatus> { |
269 typedef URLRequestStatus param_type; | 269 typedef net::URLRequestStatus param_type; |
270 static void Write(Message* m, const param_type& p); | 270 static void Write(Message* m, const param_type& p); |
271 static bool Read(const Message* m, void** iter, param_type* r); | 271 static bool Read(const Message* m, void** iter, param_type* r); |
272 static void Log(const param_type& p, std::string* l); | 272 static void Log(const param_type& p, std::string* l); |
273 }; | 273 }; |
274 | 274 |
275 // Traits for net::UploadData. | 275 // Traits for net::UploadData. |
276 template <> | 276 template <> |
277 struct ParamTraits<scoped_refptr<net::UploadData> > { | 277 struct ParamTraits<scoped_refptr<net::UploadData> > { |
278 typedef scoped_refptr<net::UploadData> param_type; | 278 typedef scoped_refptr<net::UploadData> param_type; |
279 static void Write(Message* m, const param_type& p); | 279 static void Write(Message* m, const param_type& p); |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 struct ParamTraits<printing::PrinterCapsAndDefaults> { | 339 struct ParamTraits<printing::PrinterCapsAndDefaults> { |
340 typedef printing::PrinterCapsAndDefaults param_type; | 340 typedef printing::PrinterCapsAndDefaults param_type; |
341 static void Write(Message* m, const param_type& p); | 341 static void Write(Message* m, const param_type& p); |
342 static bool Read(const Message* m, void** iter, param_type* r); | 342 static bool Read(const Message* m, void** iter, param_type* r); |
343 static void Log(const param_type& p, std::string* l); | 343 static void Log(const param_type& p, std::string* l); |
344 }; | 344 }; |
345 | 345 |
346 } // namespace IPC | 346 } // namespace IPC |
347 | 347 |
348 #endif // CHROME_COMMON_COMMON_PARAM_TRAITS_H_ | 348 #endif // CHROME_COMMON_COMMON_PARAM_TRAITS_H_ |
OLD | NEW |