OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 #ifndef NET_BASE_HOST_RESOLVER_IMPL_H_ | 5 #ifndef NET_BASE_HOST_RESOLVER_IMPL_H_ |
6 #define NET_BASE_HOST_RESOLVER_IMPL_H_ | 6 #define NET_BASE_HOST_RESOLVER_IMPL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/threading/non_thread_safe.h" | 14 #include "base/threading/non_thread_safe.h" |
15 #include "base/time.h" | 15 #include "base/time.h" |
16 #include "net/base/capturing_net_log.h" | |
17 #include "net/base/host_cache.h" | 16 #include "net/base/host_cache.h" |
18 #include "net/base/host_resolver.h" | 17 #include "net/base/host_resolver.h" |
19 #include "net/base/host_resolver_proc.h" | 18 #include "net/base/host_resolver_proc.h" |
20 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
21 #include "net/base/net_log.h" | 20 #include "net/base/net_log.h" |
22 #include "net/base/network_change_notifier.h" | 21 #include "net/base/network_change_notifier.h" |
23 | 22 |
24 namespace net { | 23 namespace net { |
25 | 24 |
26 // For each hostname that is requested, HostResolver creates a | 25 // For each hostname that is requested, HostResolver creates a |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 HostResolverFlags additional_resolver_flags_; | 343 HostResolverFlags additional_resolver_flags_; |
345 | 344 |
346 NetLog* net_log_; | 345 NetLog* net_log_; |
347 | 346 |
348 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl); | 347 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl); |
349 }; | 348 }; |
350 | 349 |
351 } // namespace net | 350 } // namespace net |
352 | 351 |
353 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_ | 352 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_ |
OLD | NEW |