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

Unified Diff: net/ssl/default_channel_id_store.h

Issue 381073002: Move sqlite_channel_id_store from chrome/browser/net to net/extras. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add DeleteAll(server_identifiers) method. Created 6 years, 4 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: net/ssl/default_channel_id_store.h
diff --git a/net/ssl/default_channel_id_store.h b/net/ssl/default_channel_id_store.h
index 9c307e8c80c0933fb543221a8dd80517d96517c9..fc04fcb5b112a617a109c5849f586114c1f0947c 100644
--- a/net/ssl/default_channel_id_store.h
+++ b/net/ssl/default_channel_id_store.h
@@ -173,6 +173,10 @@ class NET_EXPORT DefaultChannelIDStore::PersistentStore
virtual void DeleteChannelID(const ChannelID& channel_id) = 0;
+ // Delete channel ids for all servers in |server_identifiers|.
+ virtual void DeleteAll(
+ const std::vector<std::string>& server_identifiers) = 0;
+
// When invoked, instructs the store to keep session related data on
// destruction.
virtual void SetForceKeepSessionState() = 0;

Powered by Google App Engine
This is Rietveld 408576698