Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(347)

Side by Side Diff: chrome/common/common_param_traits.h

Issue 6166010: net: Remove typedef net::URLRequestStatus URLRequestStatus; (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/automation_messages_internal.h ('k') | chrome/common/common_param_traits.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « chrome/common/automation_messages_internal.h ('k') | chrome/common/common_param_traits.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698