#ifndef CHROME_BROWSER_NET_SQLITE_SERVER_BOUND_CERT_STORE_H_
#define CHROME_BROWSER_NET_SQLITE_SERVER_BOUND_CERT_STORE_H_
#include "base/callback_forward.h"
#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "net/ssl/default_server_bound_cert_store.h"
namespace base {
class FilePath;
class SequencedTaskRunner;
}
namespace quota {
class SpecialStoragePolicy;
}
class SQLiteServerBoundCertStore
: public net::DefaultServerBoundCertStore::PersistentStore {
public:
SQLiteServerBoundCertStore(
const base::FilePath& path,
const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
quota::SpecialStoragePolicy* special_storage_policy);
virtual void Load(const LoadedCallback& loaded_callback) OVERRIDE;
virtual void AddServerBoundCert(
const net::DefaultServerBoundCertStore::ServerBoundCert& cert) OVERRIDE;
virtual void DeleteServerBoundCert(
const net::DefaultServerBoundCertStore::ServerBoundCert& cert) OVERRIDE;
virtual void SetForceKeepSessionState() OVERRIDE;
protected:
virtual ~SQLiteServerBoundCertStore();
private:
class Backend;
scoped_refptr<Backend> backend_;
DISALLOW_COPY_AND_ASSIGN(SQLiteServerBoundCertStore);
};
#endif