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

Unified Diff: net/proxy/proxy_retry_info.h

Issue 992733002: Remove //net (except for Android test stuff) and sdch (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/proxy/proxy_resolver_winhttp.cc ('k') | net/proxy/proxy_script_decider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_retry_info.h
diff --git a/net/proxy/proxy_retry_info.h b/net/proxy/proxy_retry_info.h
deleted file mode 100644
index b65f6f5f76b615729d7622b451c39d4e653c7395..0000000000000000000000000000000000000000
--- a/net/proxy/proxy_retry_info.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef NET_PROXY_PROXY_RETRY_INFO_H_
-#define NET_PROXY_PROXY_RETRY_INFO_H_
-
-#include <map>
-
-#include "base/time/time.h"
-
-namespace net {
-
-// Contains the information about when to retry a proxy server.
-struct ProxyRetryInfo {
- ProxyRetryInfo() : try_while_bad(true), net_error(0) {}
-
- // We should not retry until this time.
- base::TimeTicks bad_until;
-
- // This is the current delay. If the proxy is still bad, we need to increase
- // this delay.
- base::TimeDelta current_delay;
-
- // True if this proxy should be considered even if still bad.
- bool try_while_bad;
-
- // The network error received when this proxy failed, or |OK| if the proxy
- // was added to the retry list for a non-network related reason. (e.g. local
- // policy).
- int net_error;
-};
-
-// Map of proxy servers with the associated RetryInfo structures.
-// The key is a proxy URI string [<scheme>"://"]<host>":"<port>.
-typedef std::map<std::string, ProxyRetryInfo> ProxyRetryInfoMap;
-
-} // namespace net
-
-#endif // NET_PROXY_PROXY_RETRY_INFO_H_
« no previous file with comments | « net/proxy/proxy_resolver_winhttp.cc ('k') | net/proxy/proxy_script_decider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698