| Index: net/ssl/default_server_bound_cert_store.h
|
| diff --git a/net/ssl/default_server_bound_cert_store.h b/net/ssl/default_server_bound_cert_store.h
|
| index 61282182f8e584b9207be06418ee3f8e2e3d70ae..0207a3fbc610f18d253a2eaf07a588cb73f739b5 100644
|
| --- a/net/ssl/default_server_bound_cert_store.h
|
| +++ b/net/ssl/default_server_bound_cert_store.h
|
| @@ -43,25 +43,21 @@ class NET_EXPORT DefaultServerBoundCertStore : public ServerBoundCertStore {
|
| virtual ~DefaultServerBoundCertStore();
|
|
|
| // ServerBoundCertStore implementation.
|
| - virtual int GetServerBoundCert(
|
| - const std::string& server_identifier,
|
| - base::Time* expiration_time,
|
| - std::string* private_key_result,
|
| - std::string* cert_result,
|
| - const GetCertCallback& callback) OVERRIDE;
|
| - virtual void SetServerBoundCert(
|
| - const std::string& server_identifier,
|
| - base::Time creation_time,
|
| - base::Time expiration_time,
|
| - const std::string& private_key,
|
| - const std::string& cert) OVERRIDE;
|
| - virtual void DeleteServerBoundCert(
|
| - const std::string& server_identifier,
|
| - const base::Closure& callback) OVERRIDE;
|
| - virtual void DeleteAllCreatedBetween(
|
| - base::Time delete_begin,
|
| - base::Time delete_end,
|
| - const base::Closure& callback) OVERRIDE;
|
| + virtual int GetServerBoundCert(const std::string& server_identifier,
|
| + base::Time* expiration_time,
|
| + std::string* private_key_result,
|
| + std::string* cert_result,
|
| + const GetCertCallback& callback) OVERRIDE;
|
| + virtual void SetServerBoundCert(const std::string& server_identifier,
|
| + base::Time creation_time,
|
| + base::Time expiration_time,
|
| + const std::string& private_key,
|
| + const std::string& cert) OVERRIDE;
|
| + virtual void DeleteServerBoundCert(const std::string& server_identifier,
|
| + const base::Closure& callback) OVERRIDE;
|
| + virtual void DeleteAllCreatedBetween(base::Time delete_begin,
|
| + base::Time delete_end,
|
| + const base::Closure& callback) OVERRIDE;
|
| virtual void DeleteAll(const base::Closure& callback) OVERRIDE;
|
| virtual void GetAllServerBoundCerts(
|
| const GetCertListCallback& callback) OVERRIDE;
|
| @@ -106,12 +102,11 @@ class NET_EXPORT DefaultServerBoundCertStore : public ServerBoundCertStore {
|
|
|
| // Syncronous methods which do the actual work. Can only be called after
|
| // initialization is complete.
|
| - void SyncSetServerBoundCert(
|
| - const std::string& server_identifier,
|
| - base::Time creation_time,
|
| - base::Time expiration_time,
|
| - const std::string& private_key,
|
| - const std::string& cert);
|
| + void SyncSetServerBoundCert(const std::string& server_identifier,
|
| + base::Time creation_time,
|
| + base::Time expiration_time,
|
| + const std::string& private_key,
|
| + const std::string& cert);
|
| void SyncDeleteServerBoundCert(const std::string& server_identifier);
|
| void SyncDeleteAllCreatedBetween(base::Time delete_begin,
|
| base::Time delete_end);
|
|
|