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

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

Issue 11742037: Make ServerBoundCertStore interface async, move SQLiteServerBoundCertStore load onto DB thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 12 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/browsing_data_remover.h
diff --git a/chrome/browser/browsing_data/browsing_data_remover.h b/chrome/browser/browsing_data/browsing_data_remover.h
index 7222237bee2f931b97357304d24963f6b995611f..89de513a4b60e1254ab7628f7da728504717d8df 100644
--- a/chrome/browser/browsing_data/browsing_data_remover.h
+++ b/chrome/browser/browsing_data/browsing_data_remover.h
@@ -321,6 +321,12 @@ class BrowsingDataRemover : public content::NotificationObserver,
void ClearServerBoundCertsOnIOThread(
net::URLRequestContextGetter* rq_context);
+ // Callback on IO Thread when server bound certs have been deleted. Clears
markusheintz_ 2013/01/04 18:03:40 nit: Pls delete one space before "Clears".
mattm 2013/01/08 04:53:21 Done.
+ // SSL connection pool and posts to UI thread to run
+ // OnClearedServerBoundCerts.
+ void OnClearedServerBoundCertsOnIOThread(
+ net::URLRequestContextGetter* rq_context);
+
// Callback when server bound certs have been deleted. Invokes
// NotifyAndDeleteIfDone.
void OnClearedServerBoundCerts();

Powered by Google App Engine
This is Rietveld 408576698