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

Unified Diff: net/socket/ssl_host_info.cc

Issue 6329001: net: measure theoretical delay of waiting for DNS cert information. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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/socket/ssl_host_info.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_host_info.cc
diff --git a/net/socket/ssl_host_info.cc b/net/socket/ssl_host_info.cc
index 1fcc0530b09beb86a266d3d949d37e71ce10467d..bd7a4adfe74e293849dd755f9b2753a8df6d2774 100644
--- a/net/socket/ssl_host_info.cc
+++ b/net/socket/ssl_host_info.cc
@@ -76,6 +76,20 @@ SSLHostInfo::State* SSLHostInfo::mutable_state() {
return &state_;
}
+void SSLHostInfo::set_cert_verification_finished_time() {
+#if defined(OS_LINUX)
+ if (dnsrr_resolver_ && dns_handle_ == DnsRRResolver::kInvalidHandle) {
+ // We have completed the DNS lookup already. Therefore, waiting for the DNS
+ // lookup would cause no delay.
+ UMA_HISTOGRAM_TIMES("Net.SSLHostInfoDNSLookupDelayMs", base::TimeDelta());
+ } else {
+ // The actual delay will be calculated when the DNS lookup finishes, in
+ // DnsComplete.
+ cert_verification_finished_time_ = base::TimeTicks::Now();
+ }
+#endif
+}
+
bool SSLHostInfo::Parse(const std::string& data) {
State* state = mutable_state();
@@ -224,10 +238,16 @@ void SSLHostInfo::DnsComplete(int rv) {
dns_callback_ = NULL;
const base::TimeTicks now = base::TimeTicks::Now();
- const base::TimeDelta elapsed = now - dns_lookup_start_time_;
+ base::TimeDelta elapsed = now - dns_lookup_start_time_;
UMA_HISTOGRAM_TIMES("Net.SSLHostInfoDNSLookup", elapsed);
+
+ if (!cert_verification_finished_time_.is_null()) {
+ elapsed = now - cert_verification_finished_time_;
+ UMA_HISTOGRAM_TIMES("Net.SSLHostInfoDNSLookupDelayMs", elapsed);
+ }
}
+
SSLHostInfoFactory::~SSLHostInfoFactory() {}
} // namespace net
« no previous file with comments | « net/socket/ssl_host_info.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698