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

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: Resolved merge conflicts (hopefully). 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') | no next file with comments »
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 0c9bca7d527d592effc053d2b9b50085f3cef261..36caaa130dfd1adf0e49308a0f21dea6c820678a 100644
--- a/net/http/disk_based_cert_cache.h
+++ b/net/http/disk_based_cert_cache.h
@@ -1,4 +1,4 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
+// Copyright (c) 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -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') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698