Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: net/proxy/proxy_retry_info.h

Issue 18054010: Use a direct include of time headers in net/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/proxy/proxy_list.cc ('k') | net/proxy/proxy_script_decider.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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_RETRY_INFO_H_ 5 #ifndef NET_PROXY_PROXY_RETRY_INFO_H_
6 #define NET_PROXY_PROXY_RETRY_INFO_H_ 6 #define NET_PROXY_PROXY_RETRY_INFO_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/time.h" 10 #include "base/time/time.h"
11 11
12 namespace net { 12 namespace net {
13 13
14 // Contains the information about when to retry a proxy server. 14 // Contains the information about when to retry a proxy server.
15 struct ProxyRetryInfo { 15 struct ProxyRetryInfo {
16 // We should not retry until this time. 16 // We should not retry until this time.
17 base::TimeTicks bad_until; 17 base::TimeTicks bad_until;
18 18
19 // This is the current delay. If the proxy is still bad, we need to increase 19 // This is the current delay. If the proxy is still bad, we need to increase
20 // this delay. 20 // this delay.
21 base::TimeDelta current_delay; 21 base::TimeDelta current_delay;
22 }; 22 };
23 23
24 // Map of proxy servers with the associated RetryInfo structures. 24 // Map of proxy servers with the associated RetryInfo structures.
25 // The key is a proxy URI string [<scheme>"://"]<host>":"<port>. 25 // The key is a proxy URI string [<scheme>"://"]<host>":"<port>.
26 typedef std::map<std::string, ProxyRetryInfo> ProxyRetryInfoMap; 26 typedef std::map<std::string, ProxyRetryInfo> ProxyRetryInfoMap;
27 27
28 } // namespace net 28 } // namespace net
29 29
30 #endif // NET_PROXY_PROXY_RETRY_INFO_H_ 30 #endif // NET_PROXY_PROXY_RETRY_INFO_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_list.cc ('k') | net/proxy/proxy_script_decider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698