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

Side by Side Diff: net/base/net_log_event_type_list.h

Issue 14148007: [SPDY] Fix bug where a SPDY stream might not unstall properly in all cases (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | net/spdy/spdy_session.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // NOTE: No header guards are used, since this file is intended to be expanded 5 // NOTE: No header guards are used, since this file is intended to be expanded
6 // directly into net_log.h. DO NOT include this file anywhere else. 6 // directly into net_log.h. DO NOT include this file anywhere else.
7 7
8 // In the event of a failure, a many end events will have a |net_error| 8 // In the event of a failure, a many end events will have a |net_error|
9 // parameter with the integer error code associated with the failure. Most 9 // parameter with the integer error code associated with the failure. Most
10 // of these parameters are not individually documented. 10 // of these parameters are not individually documented.
(...skipping 1183 matching lines...) Expand 10 before | Expand all | Expand 10 after
1194 // } 1194 // }
1195 EVENT_TYPE(SPDY_SESSION_POOL_REMOVE_SESSION) 1195 EVENT_TYPE(SPDY_SESSION_POOL_REMOVE_SESSION)
1196 1196
1197 // ------------------------------------------------------------------------ 1197 // ------------------------------------------------------------------------
1198 // SpdyStream 1198 // SpdyStream
1199 // ------------------------------------------------------------------------ 1199 // ------------------------------------------------------------------------
1200 1200
1201 // The begin and end of a SPDY STREAM. 1201 // The begin and end of a SPDY STREAM.
1202 EVENT_TYPE(SPDY_STREAM) 1202 EVENT_TYPE(SPDY_STREAM)
1203 1203
1204 // Logs that a stream attached to a pushed stream. 1204 // A stream is attached to a pushed stream.
1205 EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM) 1205 EVENT_TYPE(SPDY_STREAM_ADOPTED_PUSH_STREAM)
1206 1206
1207 // A stream is unstalled by flow control.
1208 EVENT_TYPE(SPDY_STREAM_FLOW_CONTROL_UNSTALLED)
1209
1207 // This event indicates that the send window has been updated for a stream. 1210 // This event indicates that the send window has been updated for a stream.
1208 // { 1211 // {
1209 // "id": <The stream id>, 1212 // "id": <The stream id>,
1210 // "delta": <The window size delta>, 1213 // "delta": <The window size delta>,
1211 // "new_window": <The new window size>, 1214 // "new_window": <The new window size>,
1212 // } 1215 // }
1213 EVENT_TYPE(SPDY_STREAM_UPDATE_SEND_WINDOW) 1216 EVENT_TYPE(SPDY_STREAM_UPDATE_SEND_WINDOW)
1214 1217
1215 // This event indicates that the recv window has been updated for a stream. 1218 // This event indicates that the recv window has been updated for a stream.
1216 // { 1219 // {
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
1918 // } 1921 // }
1919 EVENT_TYPE(FTP_DATA_CONNECTION) 1922 EVENT_TYPE(FTP_DATA_CONNECTION)
1920 1923
1921 // This event is created when FTP control connection response is processed. 1924 // This event is created when FTP control connection response is processed.
1922 // It contains following parameters: 1925 // It contains following parameters:
1923 // { 1926 // {
1924 // "lines": <list of strings - each representing a line of the response> 1927 // "lines": <list of strings - each representing a line of the response>
1925 // "status_code": <numeric status code of the response> 1928 // "status_code": <numeric status code of the response>
1926 // } 1929 // }
1927 EVENT_TYPE(FTP_CONTROL_RESPONSE) 1930 EVENT_TYPE(FTP_CONTROL_RESPONSE)
OLDNEW
« no previous file with comments | « no previous file | net/spdy/spdy_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698