Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef NET_DNS_TYPE_CONVERTERS_H_ | |
|
eroman
2015/02/12 02:30:18
Please call this file mojo_type_converters. Otherw
Anand Mistry (off Chromium)
2015/02/12 04:47:15
Done.
| |
| 6 #define NET_DNS_TYPE_CONVERTERS_H_ | |
| 7 | |
| 8 #include "net/dns/host_resolver.h" | |
| 9 #include "net/interfaces/host_resolver_service.mojom.h" | |
| 10 | |
| 11 namespace mojo { | |
| 12 | |
| 13 template <> | |
| 14 struct TypeConverter<net::HostResolver::RequestInfo, | |
| 15 net::interfaces::HostResolverRequestInfo> { | |
| 16 static net::HostResolver::RequestInfo Convert( | |
| 17 const net::interfaces::HostResolverRequestInfo& obj); | |
| 18 }; | |
| 19 | |
| 20 template <> | |
| 21 struct TypeConverter<net::interfaces::AddressListPtr, net::AddressList> { | |
| 22 static net::interfaces::AddressListPtr Convert(const net::AddressList& obj); | |
| 23 }; | |
| 24 | |
| 25 template <> | |
| 26 struct TypeConverter<net::AddressList, net::interfaces::AddressList> { | |
| 27 static net::AddressList Convert(const net::interfaces::AddressList& obj); | |
| 28 }; | |
| 29 | |
| 30 } // namespace mojo | |
| 31 | |
| 32 #endif // NET_DNS_TYPE_CONVERTERS_H_ | |
| OLD | NEW |