OLD | NEW |
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 #include "net/base/ssl_config_service.h" | 5 #include "net/base/ssl_config_service.h" |
6 | 6 |
7 #include "base/registry.h" | 7 #include "base/registry.h" |
8 | 8 |
9 using base::TimeDelta; | 9 using base::TimeDelta; |
10 using base::TimeTicks; | 10 using base::TimeTicks; |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 value &= ~SSL2; | 98 value &= ~SSL2; |
99 internet_settings.WriteValue(kProtocolsValueName, value); | 99 internet_settings.WriteValue(kProtocolsValueName, value); |
100 } | 100 } |
101 | 101 |
102 void SSLConfigService::UpdateConfig(TimeTicks now) { | 102 void SSLConfigService::UpdateConfig(TimeTicks now) { |
103 GetSSLConfigNow(&config_info_); | 103 GetSSLConfigNow(&config_info_); |
104 config_time_ = now; | 104 config_time_ = now; |
105 } | 105 } |
106 | 106 |
107 } // namespace net | 107 } // namespace net |
108 | |
OLD | NEW |