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

Side by Side Diff: components/network_hints/common/network_hints_param_traits.cc

Issue 2144533002: Convert network hints to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #include "components/network_hints/common/network_hints_messages.h" 5 #include "components/network_hints/common/network_hints_param_traits.h"
6 6
7 #include "base/strings/string_number_conversions.h" 7 #include "base/strings/string_number_conversions.h"
8 #include "components/network_hints/common/network_hints_common.h" 8 #include "components/network_hints/common/network_hints_common.h"
9 9
10 namespace IPC { 10 namespace IPC {
11 11
12 void ParamTraits<network_hints::LookupRequest>::GetSize(base::PickleSizer* s,
13 const param_type& p) {
14 IPC::GetParamSize(s, p.hostname_list);
15 }
16
12 void ParamTraits<network_hints::LookupRequest>::Write( 17 void ParamTraits<network_hints::LookupRequest>::Write(
13 base::Pickle* m, 18 base::Pickle* m,
14 const network_hints::LookupRequest& request) { 19 const network_hints::LookupRequest& request) {
15 IPC::WriteParam(m, request.hostname_list); 20 IPC::WriteParam(m, request.hostname_list);
16 } 21 }
17 22
18 bool ParamTraits<network_hints::LookupRequest>::Read( 23 bool ParamTraits<network_hints::LookupRequest>::Read(
19 const base::Pickle* m, 24 const base::Pickle* m,
20 base::PickleIterator* iter, 25 base::PickleIterator* iter,
21 network_hints::LookupRequest* request) { 26 network_hints::LookupRequest* request) {
(...skipping 12 matching lines...) Expand all
34 } 39 }
35 40
36 void ParamTraits<network_hints::LookupRequest>::Log( 41 void ParamTraits<network_hints::LookupRequest>::Log(
37 const network_hints::LookupRequest& p, std::string* l) { 42 const network_hints::LookupRequest& p, std::string* l) {
38 l->append("<network_hints::LookupRequest: "); 43 l->append("<network_hints::LookupRequest: ");
39 l->append(base::SizeTToString(p.hostname_list.size())); 44 l->append(base::SizeTToString(p.hostname_list.size()));
40 l->append(" hostnames>"); 45 l->append(" hostnames>");
41 } 46 }
42 47
43 } // namespace IPC 48 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698