Chromium Code Reviews| Index: chrome/browser/ssl/chrome_ssl_host_state_delegate.cc |
| diff --git a/chrome/browser/ssl/chrome_ssl_host_state_delegate.cc b/chrome/browser/ssl/chrome_ssl_host_state_delegate.cc |
| index 64f622e2877e106b87ea6e4c71815869b4aa93ee..abd34d95bacda35d91eb264c990dc99e86454e3f 100644 |
| --- a/chrome/browser/ssl/chrome_ssl_host_state_delegate.cc |
| +++ b/chrome/browser/ssl/chrome_ssl_host_state_delegate.cc |
| @@ -9,6 +9,7 @@ |
| #include "base/command_line.h" |
| #include "base/logging.h" |
| #include "base/metrics/field_trial.h" |
| +#include "base/metrics/histogram.h" |
| #include "base/strings/string_number_conversions.h" |
| #include "base/time/clock.h" |
| #include "base/time/default_clock.h" |
| @@ -339,6 +340,7 @@ void ChromeSSLHostStateDelegate::RevokeUserDecisions(const std::string& host) { |
| // idle sockets. |
| void ChromeSSLHostStateDelegate::RevokeUserDecisionsHard( |
| const std::string& host) { |
| + UMA_HISTOGRAM_COUNTS("interstitial.ssl.revoke_user_decisions_hard", 1); |
|
jar (doing other things)
2014/08/14 22:10:37
Several issues/suggestions:
Yeah, this would in a
|
| RevokeUserDecisions(host); |
| scoped_refptr<net::URLRequestContextGetter> getter( |
| profile_->GetRequestContext()); |