// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "services/network/public/cpp/resolve_host_client_base.h" #include "base/notreached.h" #include "net/base/host_port_pair.h" namespace network { void ResolveHostClientBase::OnTextResults( const std::vector<std::string>& text_results) { … } void ResolveHostClientBase::OnHostnameResults( const std::vector<net::HostPortPair>& hosts) { … } } // namespace network