diff options
author | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 21:57:16 +0000 |
---|---|---|
committer | mbelshe@google.com <mbelshe@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-24 21:57:16 +0000 |
commit | 5e2e6c77d139c6708cc1b2c70556393b502b0e31 (patch) | |
tree | def701459295af71d69daa5a439a06ce2b562497 /net/socket/ssl_client_socket_win.h | |
parent | 1f99947ea71c8bde2dd662f9fb1b4949b11c68cc (diff) | |
download | chromium_src-5e2e6c77d139c6708cc1b2c70556393b502b0e31.zip chromium_src-5e2e6c77d139c6708cc1b2c70556393b502b0e31.tar.gz chromium_src-5e2e6c77d139c6708cc1b2c70556393b502b0e31.tar.bz2 |
Several fixes to the Net.ConnectionTypeCount histogram.
* Previously, the "CONNECTION_ANY" was incorrectly recorded. It was recording
every Http *transaction*, not every Http connection.
* The histogram was vague about whether it was tracking successful or
unsuccessful connections. In fact, it was recording all SSL connections (fail
or success), and yet only successful HTTP connections. Modified to only apply
to successful connections.
* Added a Net.ConnectionTypeFailCount histogram which counts the number of
failed connections by type.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/519002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35264 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/ssl_client_socket_win.h')
-rw-r--r-- | net/socket/ssl_client_socket_win.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/socket/ssl_client_socket_win.h b/net/socket/ssl_client_socket_win.h index f0503bd..5a83a24 100644 --- a/net/socket/ssl_client_socket_win.h +++ b/net/socket/ssl_client_socket_win.h @@ -85,7 +85,7 @@ class SSLClientSocketWin : public SSLClientSocket { int DidCallInitializeSecurityContext(); int DidCompleteHandshake(); void DidCompleteRenegotiation(); - void LogConnectionTypeMetrics() const; + void LogConnectionTypeMetrics(bool success) const; void FreeSendBuffer(); // Internal callbacks as async operations complete. |