OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PROXY_PROXY_INFO_H_ | 5 #ifndef NET_PROXY_PROXY_INFO_H_ |
6 #define NET_PROXY_PROXY_INFO_H_ | 6 #define NET_PROXY_PROXY_INFO_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/time.h" | 10 #include "base/time/time.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/base/net_log.h" | 12 #include "net/base/net_log.h" |
13 #include "net/proxy/proxy_config.h" | 13 #include "net/proxy/proxy_config.h" |
14 #include "net/proxy/proxy_list.h" | 14 #include "net/proxy/proxy_list.h" |
15 #include "net/proxy/proxy_retry_info.h" | 15 #include "net/proxy/proxy_retry_info.h" |
16 #include "net/proxy/proxy_server.h" | 16 #include "net/proxy/proxy_server.h" |
17 | 17 |
18 namespace net { | 18 namespace net { |
19 | 19 |
20 // This object holds proxy information returned by ResolveProxy. | 20 // This object holds proxy information returned by ResolveProxy. |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 | 160 |
161 // How long it took to resolve the proxy. Times are both null if proxy was | 161 // How long it took to resolve the proxy. Times are both null if proxy was |
162 // determined synchronously without running a PAC. | 162 // determined synchronously without running a PAC. |
163 base::TimeTicks proxy_resolve_start_time_; | 163 base::TimeTicks proxy_resolve_start_time_; |
164 base::TimeTicks proxy_resolve_end_time_; | 164 base::TimeTicks proxy_resolve_end_time_; |
165 }; | 165 }; |
166 | 166 |
167 } // namespace net | 167 } // namespace net |
168 | 168 |
169 #endif // NET_PROXY_PROXY_INFO_H_ | 169 #endif // NET_PROXY_PROXY_INFO_H_ |
OLD | NEW |