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

Unified Diff: net/dns/mojo_host_type_converters.h

Issue 2083463002: Replace //net TypeConverters with StructTraits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@type-converter-cleanup--gurl
Patch Set: rebase Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: net/dns/mojo_host_type_converters.h
diff --git a/net/dns/mojo_host_type_converters.h b/net/dns/mojo_host_type_converters.h
deleted file mode 100644
index 8889b3fb5fdf0d05956c7f76f773172e9e5e81b6..0000000000000000000000000000000000000000
--- a/net/dns/mojo_host_type_converters.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_DNS_MOJO_HOST_TYPE_CONVERTERS_H_
-#define NET_DNS_MOJO_HOST_TYPE_CONVERTERS_H_
-
-#include "net/dns/host_resolver.h"
-#include "net/interfaces/host_resolver_service.mojom.h"
-
-namespace mojo {
-
-template <>
-struct TypeConverter<net::HostResolver::RequestInfo,
- net::interfaces::HostResolverRequestInfo> {
- static net::HostResolver::RequestInfo Convert(
- const net::interfaces::HostResolverRequestInfo& obj);
-};
-
-template <>
-struct TypeConverter<net::interfaces::HostResolverRequestInfoPtr,
- net::HostResolver::RequestInfo> {
- static net::interfaces::HostResolverRequestInfoPtr Convert(
- const net::HostResolver::RequestInfo& obj);
-};
-
-template <>
-struct TypeConverter<net::interfaces::AddressListPtr, net::AddressList> {
- static net::interfaces::AddressListPtr Convert(const net::AddressList& obj);
-};
-
-template <>
-struct TypeConverter<net::AddressList, net::interfaces::AddressList> {
- static net::AddressList Convert(const net::interfaces::AddressList& obj);
-};
-
-} // namespace mojo
-
-#endif // NET_DNS_MOJO_HOST_TYPE_CONVERTERS_H_

Powered by Google App Engine
This is Rietveld 408576698