| Index: chrome/browser/net/sqlite_channel_id_store.h
|
| diff --git a/chrome/browser/net/sqlite_server_bound_cert_store.h b/chrome/browser/net/sqlite_channel_id_store.h
|
| similarity index 53%
|
| rename from chrome/browser/net/sqlite_server_bound_cert_store.h
|
| rename to chrome/browser/net/sqlite_channel_id_store.h
|
| index d6777b0f1294daac502731a30e43f16ff3eb1c96..19cede799df68858e71ec61e155f642132ecc77a 100644
|
| --- a/chrome/browser/net/sqlite_server_bound_cert_store.h
|
| +++ b/chrome/browser/net/sqlite_channel_id_store.h
|
| @@ -2,13 +2,13 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_BROWSER_NET_SQLITE_SERVER_BOUND_CERT_STORE_H_
|
| -#define CHROME_BROWSER_NET_SQLITE_SERVER_BOUND_CERT_STORE_H_
|
| +#ifndef CHROME_BROWSER_NET_SQLITE_CHANNEL_ID_STORE_H_
|
| +#define CHROME_BROWSER_NET_SQLITE_CHANNEL_ID_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"
|
| +#include "net/ssl/default_channel_id_store.h"
|
|
|
| namespace base {
|
| class FilePath;
|
| @@ -19,37 +19,37 @@ namespace quota {
|
| class SpecialStoragePolicy;
|
| }
|
|
|
| -// Implements the net::DefaultServerBoundCertStore::PersistentStore interface
|
| +// Implements the net::DefaultChannelIDStore::PersistentStore interface
|
| // in terms of a SQLite database. For documentation about the actual member
|
| // functions consult the documentation of the parent class
|
| -// |net::DefaultServerBoundCertStore::PersistentCertStore|.
|
| +// |net::DefaultChannelIDStore::PersistentCertStore|.
|
| // If provided, a |SpecialStoragePolicy| is consulted when the SQLite database
|
| // is closed to decide which certificates to keep.
|
| -class SQLiteServerBoundCertStore
|
| - : public net::DefaultServerBoundCertStore::PersistentStore {
|
| +class SQLiteChannelIDStore
|
| + : public net::DefaultChannelIDStore::PersistentStore {
|
| public:
|
| - SQLiteServerBoundCertStore(
|
| + SQLiteChannelIDStore(
|
| const base::FilePath& path,
|
| const scoped_refptr<base::SequencedTaskRunner>& background_task_runner,
|
| quota::SpecialStoragePolicy* special_storage_policy);
|
|
|
| - // net::DefaultServerBoundCertStore::PersistentStore:
|
| + // net::DefaultChannelIDStore::PersistentStore:
|
| 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 AddChannelID(
|
| + const net::DefaultChannelIDStore::ChannelID& channel_id) OVERRIDE;
|
| + virtual void DeleteChannelID(
|
| + const net::DefaultChannelIDStore::ChannelID& channel_idx) OVERRIDE;
|
| virtual void SetForceKeepSessionState() OVERRIDE;
|
|
|
| protected:
|
| - virtual ~SQLiteServerBoundCertStore();
|
| + virtual ~SQLiteChannelIDStore();
|
|
|
| private:
|
| class Backend;
|
|
|
| scoped_refptr<Backend> backend_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(SQLiteServerBoundCertStore);
|
| + DISALLOW_COPY_AND_ASSIGN(SQLiteChannelIDStore);
|
| };
|
|
|
| -#endif // CHROME_BROWSER_NET_SQLITE_SERVER_BOUND_CERT_STORE_H_
|
| +#endif // CHROME_BROWSER_NET_SQLITE_CHANNEL_ID_STORE_H_
|
|
|