Commit 08e7dc2e authored by mbelshe@chromium.org's avatar mbelshe@chromium.org

Remove dead log entries for SPDY_TRANSACTION_*

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/3205003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57300 0039d316-1c4b-4281-b951-d872f2087c98
parent 0871fc3f
...@@ -161,14 +161,12 @@ void LoadTimingObserver::OnAddURLRequestEntry( ...@@ -161,14 +161,12 @@ void LoadTimingObserver::OnAddURLRequestEntry(
} }
break; break;
case net::NetLog::TYPE_HTTP_TRANSACTION_SEND_REQUEST: case net::NetLog::TYPE_HTTP_TRANSACTION_SEND_REQUEST:
case net::NetLog::TYPE_SPDY_TRANSACTION_SEND_REQUEST:
if (is_begin) if (is_begin)
timing.send_start = TimeTicksToOffset(time, record); timing.send_start = TimeTicksToOffset(time, record);
else if (is_end) else if (is_end)
timing.send_end = TimeTicksToOffset(time, record); timing.send_end = TimeTicksToOffset(time, record);
break; break;
case net::NetLog::TYPE_HTTP_TRANSACTION_READ_HEADERS: case net::NetLog::TYPE_HTTP_TRANSACTION_READ_HEADERS:
case net::NetLog::TYPE_SPDY_TRANSACTION_READ_HEADERS:
if (is_begin) if (is_begin)
timing.receive_headers_start = TimeTicksToOffset(time, record); timing.receive_headers_start = TimeTicksToOffset(time, record);
else if (is_end) else if (is_end)
......
...@@ -514,22 +514,6 @@ EVENT_TYPE(HTTP_TRANSACTION_READ_BODY) ...@@ -514,22 +514,6 @@ EVENT_TYPE(HTTP_TRANSACTION_READ_BODY)
// restarting for authentication, on keep alive connections. // restarting for authentication, on keep alive connections.
EVENT_TYPE(HTTP_TRANSACTION_DRAIN_BODY_FOR_AUTH_RESTART) EVENT_TYPE(HTTP_TRANSACTION_DRAIN_BODY_FOR_AUTH_RESTART)
// ------------------------------------------------------------------------
// SpdyNetworkTransaction
// ------------------------------------------------------------------------
// Measures the time taken to get a spdy stream.
EVENT_TYPE(SPDY_TRANSACTION_INIT_CONNECTION)
// Measures the time taken to send the request to the server.
EVENT_TYPE(SPDY_TRANSACTION_SEND_REQUEST)
// Measures the time to read HTTP response headers from the server.
EVENT_TYPE(SPDY_TRANSACTION_READ_HEADERS)
// Measures the time to read the entity body from the server.
EVENT_TYPE(SPDY_TRANSACTION_READ_BODY)
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
// SpdySession // SpdySession
// ------------------------------------------------------------------------ // ------------------------------------------------------------------------
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment