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" |
16 #include "net/base/host_cache.h" | 17 #include "net/base/host_cache.h" |
17 #include "net/base/host_resolver.h" | 18 #include "net/base/host_resolver.h" |
18 #include "net/base/host_resolver_proc.h" | 19 #include "net/base/host_resolver_proc.h" |
19 #include "net/base/net_export.h" | 20 #include "net/base/net_export.h" |
20 #include "net/base/net_log.h" | 21 #include "net/base/net_log.h" |
21 #include "net/base/network_change_notifier.h" | 22 #include "net/base/network_change_notifier.h" |
22 | 23 |
23 namespace net { | 24 namespace net { |
24 | 25 |
25 // For each hostname that is requested, HostResolver creates a | 26 // For each hostname that is requested, HostResolver creates a |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 HostResolverFlags additional_resolver_flags_; | 344 HostResolverFlags additional_resolver_flags_; |
344 | 345 |
345 NetLog* net_log_; | 346 NetLog* net_log_; |
346 | 347 |
347 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl); | 348 DISALLOW_COPY_AND_ASSIGN(HostResolverImpl); |
348 }; | 349 }; |
349 | 350 |
350 } // namespace net | 351 } // namespace net |
351 | 352 |
352 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_ | 353 #endif // NET_BASE_HOST_RESOLVER_IMPL_H_ |
OLD | NEW |