Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: chrome/browser/browsing_data/local_data_container.h

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browsing_data/local_data_container.h
diff --git a/chrome/browser/browsing_data/local_data_container.h b/chrome/browser/browsing_data/local_data_container.h
index 1cf4265cd2146a4e4db5eefd44ee1e31a1753708..156684ef317cf0408cfa28c9a04595b2d2d4b53b 100644
--- a/chrome/browser/browsing_data/local_data_container.h
+++ b/chrome/browser/browsing_data/local_data_container.h
@@ -14,14 +14,14 @@
#include "base/memory/weak_ptr.h"
#include "base/strings/string16.h"
#include "chrome/browser/browsing_data/browsing_data_appcache_helper.h"
+#include "chrome/browser/browsing_data/browsing_data_channel_id_helper.h"
#include "chrome/browser/browsing_data/browsing_data_cookie_helper.h"
#include "chrome/browser/browsing_data/browsing_data_database_helper.h"
#include "chrome/browser/browsing_data/browsing_data_file_system_helper.h"
#include "chrome/browser/browsing_data/browsing_data_indexed_db_helper.h"
#include "chrome/browser/browsing_data/browsing_data_local_storage_helper.h"
#include "chrome/browser/browsing_data/browsing_data_quota_helper.h"
-#include "chrome/browser/browsing_data/browsing_data_server_bound_cert_helper.h"
-#include "net/ssl/server_bound_cert_store.h"
+#include "net/ssl/channel_id_store.h"
class BrowsingDataFlashLSOHelper;
class CookiesTreeModel;
@@ -45,7 +45,7 @@ typedef std::list<content::IndexedDBInfo>
typedef std::list<BrowsingDataFileSystemHelper::FileSystemInfo>
FileSystemInfoList;
typedef std::list<BrowsingDataQuotaHelper::QuotaInfo> QuotaInfoList;
-typedef net::ServerBoundCertStore::ServerBoundCertList ServerBoundCertList;
+typedef net::ChannelIDStore::ChannelIDList ChannelIDList;
typedef std::map<GURL, std::list<content::AppCacheInfo> > AppCacheInfoMap;
typedef std::vector<std::string> FlashLSODomainList;
@@ -68,7 +68,7 @@ class LocalDataContainer {
BrowsingDataIndexedDBHelper* indexed_db_helper,
BrowsingDataFileSystemHelper* file_system_helper,
BrowsingDataQuotaHelper* quota_helper,
- BrowsingDataServerBoundCertHelper* server_bound_cert_helper,
+ BrowsingDataChannelIDHelper* channel_id_helper,
BrowsingDataFlashLSOHelper* flash_data_helper);
virtual ~LocalDataContainer();
@@ -86,7 +86,7 @@ class LocalDataContainer {
friend class CookieTreeIndexedDBNode;
friend class CookieTreeFileSystemNode;
friend class CookieTreeQuotaNode;
- friend class CookieTreeServerBoundCertNode;
+ friend class CookieTreeChannelIDNode;
friend class CookieTreeFlashLSONode;
// Callback methods to be invoked when fetching the data is complete.
@@ -102,7 +102,7 @@ class LocalDataContainer {
void OnFileSystemModelInfoLoaded(
const FileSystemInfoList& file_system_info);
void OnQuotaModelInfoLoaded(const QuotaInfoList& quota_info);
- void OnServerBoundCertModelInfoLoaded(const ServerBoundCertList& cert_list);
+ void OnChannelIDModelInfoLoaded(const ChannelIDList& channel_id_list);
void OnFlashLSOInfoLoaded(const FlashLSODomainList& domains);
// Pointers to the helper objects, needed to retreive all the types of locally
@@ -115,7 +115,7 @@ class LocalDataContainer {
scoped_refptr<BrowsingDataIndexedDBHelper> indexed_db_helper_;
scoped_refptr<BrowsingDataFileSystemHelper> file_system_helper_;
scoped_refptr<BrowsingDataQuotaHelper> quota_helper_;
- scoped_refptr<BrowsingDataServerBoundCertHelper> server_bound_cert_helper_;
+ scoped_refptr<BrowsingDataChannelIDHelper> channel_id_helper_;
scoped_refptr<BrowsingDataFlashLSOHelper> flash_lso_helper_;
// Storage for all the data that was retrieved through the helper objects.
@@ -128,7 +128,7 @@ class LocalDataContainer {
IndexedDBInfoList indexed_db_info_list_;
FileSystemInfoList file_system_info_list_;
QuotaInfoList quota_info_list_;
- ServerBoundCertList server_bound_cert_list_;
+ ChannelIDList channel_id_list_;
FlashLSODomainList flash_lso_domain_list_;
// A delegate, which must outlive this object. The update callbacks use the

Powered by Google App Engine
This is Rietveld 408576698