Updating trunk VERSION from 1014.0 to 1015.0
[chromium-blink-merge.git] / net / base / host_resolver.cc
blobab789aa87e170dfc8af1055564228b23646b1795
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
3 // found in the LICENSE file.
5 #include "net/base/host_resolver.h"
7 namespace net {
9 HostResolver::RequestInfo::RequestInfo(const HostPortPair& host_port_pair)
10 : host_port_pair_(host_port_pair),
11 address_family_(ADDRESS_FAMILY_UNSPECIFIED),
12 host_resolver_flags_(0),
13 allow_cached_response_(true),
14 is_speculative_(false),
15 priority_(MEDIUM) {
18 HostResolver::~HostResolver() {
21 AddressFamily HostResolver::GetDefaultAddressFamily() const {
22 return ADDRESS_FAMILY_UNSPECIFIED;
25 void HostResolver::ProbeIPv6Support() {
28 HostCache* HostResolver::GetHostCache() {
29 return NULL;
32 HostResolver::HostResolver() {
35 } // namespace net