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

Unified Diff: net/proxy/proxy_service.h

Issue 7995: Move Time, TimeDelta and TimeTicks into namespace base. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 2 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
Index: net/proxy/proxy_service.h
===================================================================
--- net/proxy/proxy_service.h (revision 3954)
+++ net/proxy/proxy_service.h (working copy)
@@ -65,11 +65,11 @@
// Contains the information about when to retry a proxy server.
struct ProxyRetryInfo {
// We should not retry until this time.
- TimeTicks bad_until;
+ base::TimeTicks bad_until;
// This is the current delay. If the proxy is still bad, we need to increase
// this delay.
- TimeDelta current_delay;
+ base::TimeDelta current_delay;
};
// Map of proxy servers with the associated RetryInfo structures.
@@ -161,7 +161,7 @@
bool config_is_bad_;
// The time when the proxy configuration was last read from the system.
- TimeTicks config_last_update_time_;
+ base::TimeTicks config_last_update_time_;
// Map of the known bad proxies and the information about the retry time.
ProxyRetryInfoMap proxy_retry_info_;

Powered by Google App Engine
This is Rietveld 408576698