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

Unified Diff: net/cert/cert_database_android.cc

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/cert_database.cc ('k') | net/cert/cert_database_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_database_android.cc
diff --git a/net/cert/cert_database_android.cc b/net/cert/cert_database_android.cc
index b3a75b09ac365f20c8d4ca729f4f7edb37b0422a..8cde45e20fcbd1c4fa0a92bb070106544c366351 100644
--- a/net/cert/cert_database_android.cc
+++ b/net/cert/cert_database_android.cc
@@ -18,7 +18,7 @@ CertDatabase::CertDatabase()
CertDatabase::~CertDatabase() {}
void CertDatabase::OnAndroidKeyStoreChanged() {
- NotifyObserversCertDBChanged(NULL);
+ NotifyObserversCertDBChanged();
// Dump the OpenSSLClientKeyStore to drop references to now disconnected
// PrivateKeys stored in the in-memory key store. Note: this assumes that
// every SSLClientAuthCache is dumped as part of notifying
@@ -28,7 +28,7 @@ void CertDatabase::OnAndroidKeyStoreChanged() {
}
void CertDatabase::OnAndroidKeyChainChanged() {
- observer_list_->Notify(FROM_HERE, &Observer::OnCertDBChanged, nullptr);
+ observer_list_->Notify(FROM_HERE, &Observer::OnCertDBChanged);
}
} // namespace net
« no previous file with comments | « net/cert/cert_database.cc ('k') | net/cert/cert_database_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698