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

Unified Diff: net/http/disk_based_cert_cache.h

Issue 378063002: Adding cache hit/miss histograms to DiskBasedCertCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@DBCC_MRU_Implement
Patch Set: Fixed wtc nits from previous cl (#361513003) Created 6 years, 5 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 | « no previous file | net/http/disk_based_cert_cache.cc » ('j') | net/http/disk_based_cert_cache.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/disk_based_cert_cache.h
diff --git a/net/http/disk_based_cert_cache.h b/net/http/disk_based_cert_cache.h
index 5719cc649b5322f9284af753f29b70fe81adcbe4..36caaa130dfd1adf0e49308a0f21dea6c820678a 100644
--- a/net/http/disk_based_cert_cache.h
+++ b/net/http/disk_based_cert_cache.h
@@ -47,11 +47,11 @@ class NET_EXPORT_PRIVATE DiskBasedCertCache {
void Set(const X509Certificate::OSCertHandle cert_handle,
const SetCallback& cb);
- // Returns the number of in-memory MRU cache hits that have occured
+ // Returns the number of in-memory MRU cache hits that have occurred
// on Set and Get operations. Intended for test purposes only.
size_t mem_cache_hits_for_testing() const { return mem_cache_hits_; }
- // Returns the number of in-memory MRU cache misses that have occured
+ // Returns the number of in-memory MRU cache misses that have occurred
// on Set and Get operations. Intended for test purposes only.
size_t mem_cache_misses_for_testing() const { return mem_cache_misses_; }
« no previous file with comments | « no previous file | net/http/disk_based_cert_cache.cc » ('j') | net/http/disk_based_cert_cache.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698