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

Unified Diff: chrome/browser/chromeos/options/cert_library.cc

Issue 2858113003: Enable device-wide EAP-TLS networks (Closed)
Patch Set: Fixed minor typo. Created 3 years, 7 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/chromeos/options/cert_library.cc
diff --git a/chrome/browser/chromeos/options/cert_library.cc b/chrome/browser/chromeos/options/cert_library.cc
index 00084f64e07166fe44c48033642dcd9084df14c0..c83924f7259cbd8a6b24581bb93f6c3a2a2af2ce 100644
--- a/chrome/browser/chromeos/options/cert_library.cc
+++ b/chrome/browser/chromeos/options/cert_library.cc
@@ -138,11 +138,11 @@ void CertLibrary::RemoveObserver(CertLibrary::Observer* observer) {
}
bool CertLibrary::CertificatesLoading() const {
- return CertLoader::Get()->CertificatesLoading();
+ return CertLoader::Get()->initial_load_of_any_database_running();
}
bool CertLibrary::CertificatesLoaded() const {
- return CertLoader::Get()->certificates_loaded();
+ return CertLoader::Get()->initial_load_finished();
}
int CertLibrary::NumCertificates(CertType type) const {

Powered by Google App Engine
This is Rietveld 408576698