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

Unified Diff: net/cert/cert_database.h

Issue 2691683003: Remove OnCertDBChanged |cert| parameter. (Closed)
Patch Set: comment wording Created 3 years, 10 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
« no previous file with comments | « net/cert/caching_cert_verifier.cc ('k') | net/cert/cert_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_database.h
diff --git a/net/cert/cert_database.h b/net/cert/cert_database.h
index 819716a9596bf4d5384df87b6676c0d14ddf4fac..b44b78cecef6b24c3721477cbc5ea037a5f449c2 100644
--- a/net/cert/cert_database.h
+++ b/net/cert/cert_database.h
@@ -43,7 +43,7 @@ class NET_EXPORT CertDatabase {
// Typically, this will be in response to a CA certificate being added,
// removed, or its trust changed, but may also signal on client
// certificate events when they can be reliably detected.
- virtual void OnCertDBChanged(const X509Certificate* cert) {}
+ virtual void OnCertDBChanged() {}
protected:
Observer() {}
@@ -86,7 +86,7 @@ class NET_EXPORT CertDatabase {
// Synthetically injects notifications to all observers. In general, this
// should only be called by the creator of the CertDatabase. Used to inject
// notifcations from other DB interfaces.
- void NotifyObserversCertDBChanged(const X509Certificate* cert);
+ void NotifyObserversCertDBChanged();
private:
friend struct base::DefaultSingletonTraits<CertDatabase>;
« no previous file with comments | « net/cert/caching_cert_verifier.cc ('k') | net/cert/cert_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698