diff options
author | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 17:04:45 +0000 |
---|---|---|
committer | rch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-16 17:04:45 +0000 |
commit | 60513bb6f9c574d3e8d0a2ae694c6ff298733343 (patch) | |
tree | b3c9225c715517c4c0b62cb95ec4b4c5c19e8a9e /net/http | |
parent | 40a5a9a3447e08b994d68e9e551d345ee3d69181 (diff) | |
download | chromium_src-60513bb6f9c574d3e8d0a2ae694c6ff298733343.zip chromium_src-60513bb6f9c574d3e8d0a2ae694c6ff298733343.tar.gz chromium_src-60513bb6f9c574d3e8d0a2ae694c6ff298733343.tar.bz2 |
CHECK for that we are not seeing user-visible SPDY_PING_FAILED errors.
BUG=107048
Review URL: https://chromiumcodereview.appspot.com/10243016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137445 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/http')
-rw-r--r-- | net/http/http_network_transaction.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/http/http_network_transaction.cc b/net/http/http_network_transaction.cc index 7b52766..d11aebb 100644 --- a/net/http/http_network_transaction.cc +++ b/net/http/http_network_transaction.cc @@ -164,6 +164,7 @@ int HttpNetworkTransaction::Start(const HttpRequestInfo* request_info, int rv = DoLoop(OK); if (rv == ERR_IO_PENDING) callback_ = callback; + CHECK_NE(rv, ERR_SPDY_PING_FAILED); return rv; } @@ -470,6 +471,7 @@ bool HttpNetworkTransaction::is_https_request() const { } void HttpNetworkTransaction::DoCallback(int rv) { + CHECK_NE(rv, ERR_SPDY_PING_FAILED); DCHECK_NE(rv, ERR_IO_PENDING); DCHECK(!callback_.is_null()); |