| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_SSL_SSL_CONFIG_SERVICE_H_ | 5 #ifndef NET_SSL_SSL_CONFIG_SERVICE_H_ |
| 6 #define NET_SSL_SSL_CONFIG_SERVICE_H_ | 6 #define NET_SSL_SSL_CONFIG_SERVICE_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/observer_list.h" | 11 #include "base/observer_list.h" |
| 12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 13 #include "net/cert/crl_set.h" | 13 #include "net/cert/crl_set.h" |
| 14 #include "net/cert/ct_ev_whitelist.h" |
| 14 #include "net/ssl/ssl_config.h" | 15 #include "net/ssl/ssl_config.h" |
| 15 | 16 |
| 16 namespace net { | 17 namespace net { |
| 17 | 18 |
| 18 // The interface for retrieving the SSL configuration. This interface | 19 // The interface for retrieving the SSL configuration. This interface |
| 19 // does not cover setting the SSL configuration, as on some systems, the | 20 // does not cover setting the SSL configuration, as on some systems, the |
| 20 // SSLConfigService objects may not have direct access to the configuration, or | 21 // SSLConfigService objects may not have direct access to the configuration, or |
| 21 // live longer than the configuration preferences. | 22 // live longer than the configuration preferences. |
| 22 class NET_EXPORT SSLConfigService | 23 class NET_EXPORT SSLConfigService |
| 23 : public base::RefCountedThreadSafe<SSLConfigService> { | 24 : public base::RefCountedThreadSafe<SSLConfigService> { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 43 | 44 |
| 44 SSLConfigService(); | 45 SSLConfigService(); |
| 45 | 46 |
| 46 // May not be thread-safe, should only be called on the IO thread. | 47 // May not be thread-safe, should only be called on the IO thread. |
| 47 virtual void GetSSLConfig(SSLConfig* config) = 0; | 48 virtual void GetSSLConfig(SSLConfig* config) = 0; |
| 48 | 49 |
| 49 // Sets and gets the current, global CRL set. | 50 // Sets and gets the current, global CRL set. |
| 50 static void SetCRLSet(scoped_refptr<CRLSet> crl_set); | 51 static void SetCRLSet(scoped_refptr<CRLSet> crl_set); |
| 51 static scoped_refptr<CRLSet> GetCRLSet(); | 52 static scoped_refptr<CRLSet> GetCRLSet(); |
| 52 | 53 |
| 54 // Sets the EV certificates whitelist to be used in the SSLConfig |
| 55 // this class provides. |
| 56 virtual void SetEVCertsWhitelist( |
| 57 scoped_refptr<ct::EVCertsWhitelist> ev_whitelist); |
| 58 |
| 53 // Add an observer of this service. | 59 // Add an observer of this service. |
| 54 void AddObserver(Observer* observer); | 60 void AddObserver(Observer* observer); |
| 55 | 61 |
| 56 // Remove an observer of this service. | 62 // Remove an observer of this service. |
| 57 void RemoveObserver(Observer* observer); | 63 void RemoveObserver(Observer* observer); |
| 58 | 64 |
| 59 // Calls the OnSSLConfigChanged method of registered observers. Should only be | 65 // Calls the OnSSLConfigChanged method of registered observers. Should only be |
| 60 // called on the IO thread. | 66 // called on the IO thread. |
| 61 void NotifySSLConfigChange(); | 67 void NotifySSLConfigChange(); |
| 62 | 68 |
| 63 protected: | 69 protected: |
| 64 friend class base::RefCountedThreadSafe<SSLConfigService>; | 70 friend class base::RefCountedThreadSafe<SSLConfigService>; |
| 65 | 71 |
| 66 virtual ~SSLConfigService(); | 72 virtual ~SSLConfigService(); |
| 67 | 73 |
| 68 // Process before/after config update. | 74 // Process before/after config update. |
| 69 void ProcessConfigUpdate(const SSLConfig& orig_config, | 75 void ProcessConfigUpdate(const SSLConfig& orig_config, |
| 70 const SSLConfig& new_config); | 76 const SSLConfig& new_config); |
| 71 | 77 |
| 72 private: | 78 private: |
| 73 ObserverList<Observer> observer_list_; | 79 ObserverList<Observer> observer_list_; |
| 74 }; | 80 }; |
| 75 | 81 |
| 76 } // namespace net | 82 } // namespace net |
| 77 | 83 |
| 78 #endif // NET_SSL_SSL_CONFIG_SERVICE_H_ | 84 #endif // NET_SSL_SSL_CONFIG_SERVICE_H_ |
| OLD | NEW |