summaryrefslogtreecommitdiffstats
path: root/net/base/ssl_config_service.h
diff options
context:
space:
mode:
authordsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:43:33 +0000
committerdsh@google.com <dsh@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-27 20:43:33 +0000
commite1acf6f902e50222baf99bfb492ecc38a1604975 (patch)
tree503d45705b14be7e2f1ed86c71d6064abbf90fbe /net/base/ssl_config_service.h
parenta2f5993e1ce940e8a8eec900abaeed02e2eee09b (diff)
downloadchromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.zip
chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.gz
chromium_src-e1acf6f902e50222baf99bfb492ecc38a1604975.tar.bz2
Move Time, TimeDelta and TimeTicks into namespace base.
Review URL: http://codereview.chromium.org/7995 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4022 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/ssl_config_service.h')
-rw-r--r--net/base/ssl_config_service.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/base/ssl_config_service.h b/net/base/ssl_config_service.h
index d2010e04..b4e0622 100644
--- a/net/base/ssl_config_service.h
+++ b/net/base/ssl_config_service.h
@@ -34,7 +34,7 @@ struct SSLConfig {
class SSLConfigService {
public:
SSLConfigService();
- explicit SSLConfigService(TimeTicks now); // Used for testing.
+ explicit SSLConfigService(base::TimeTicks now); // Used for testing.
~SSLConfigService() { }
// Get the current SSL configuration settings. Can be called on any
@@ -50,18 +50,18 @@ class SSLConfigService {
// we don't need the absolutely current configuration settings. This
// method is not thread-safe, so it must be called on the same thread.
void GetSSLConfig(SSLConfig* config) {
- GetSSLConfigAt(config, TimeTicks::Now());
+ GetSSLConfigAt(config, base::TimeTicks::Now());
}
// Used for testing.
- void GetSSLConfigAt(SSLConfig* config, TimeTicks now);
+ void GetSSLConfigAt(SSLConfig* config, base::TimeTicks now);
private:
- void UpdateConfig(TimeTicks now);
+ void UpdateConfig(base::TimeTicks now);
// We store the IE SSL config and the time that we fetched it.
SSLConfig config_info_;
- TimeTicks config_time_;
+ base::TimeTicks config_time_;
DISALLOW_EVIL_CONSTRUCTORS(SSLConfigService);
};