| Index: chrome/browser/net/sqlite_server_bound_cert_store.h
|
| diff --git a/chrome/browser/net/sqlite_server_bound_cert_store.h b/chrome/browser/net/sqlite_server_bound_cert_store.h
|
| index da363a0b502e74c0e6ce50aecba44b37e2d800db..6647eeee3261637c4b412375cb1a4f3f424d50e7 100644
|
| --- a/chrome/browser/net/sqlite_server_bound_cert_store.h
|
| +++ b/chrome/browser/net/sqlite_server_bound_cert_store.h
|
| @@ -21,9 +21,8 @@ class SQLiteServerBoundCertStore
|
| : public net::DefaultServerBoundCertStore::PersistentStore {
|
| public:
|
| explicit SQLiteServerBoundCertStore(const FilePath& path);
|
| - virtual ~SQLiteServerBoundCertStore();
|
|
|
| - // net::DefaultServerBoundCertStore::PersistentStore implementation.
|
| + // net::DefaultServerBoundCertStore::PersistentStore:
|
| virtual bool Load(
|
| std::vector<net::DefaultServerBoundCertStore::ServerBoundCert*>* certs)
|
| OVERRIDE;
|
| @@ -34,6 +33,9 @@ class SQLiteServerBoundCertStore
|
| virtual void SetClearLocalStateOnExit(bool clear_local_state) OVERRIDE;
|
| virtual void Flush(const base::Closure& completion_task) OVERRIDE;
|
|
|
| + protected:
|
| + virtual ~SQLiteServerBoundCertStore();
|
| +
|
| private:
|
| class Backend;
|
|
|
|
|