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

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

Issue 331663007: Implement PUSH_PROMISE handling in spdy_session (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Call OnPushPromiseHeaders.. inside TryCreatePushStream Created 6 years, 6 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
« no previous file with comments | « no previous file | net/spdy/spdy_network_transaction_unittest.cc » ('j') | net/spdy/spdy_session.cc » ('J')
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 1188 matching lines...) Expand 10 before | Expand all | Expand 10 after
1199 EVENT_TYPE(SPDY_SESSION_SEND_DATA) 1199 EVENT_TYPE(SPDY_SESSION_SEND_DATA)
1200 1200
1201 // Receiving a data frame 1201 // Receiving a data frame
1202 // { 1202 // {
1203 // "stream_id": <The stream ID for the window update>, 1203 // "stream_id": <The stream ID for the window update>,
1204 // "length" : <The size of data received>, 1204 // "length" : <The size of data received>,
1205 // "flags" : <Receive data flags>, 1205 // "flags" : <Receive data flags>,
1206 // } 1206 // }
1207 EVENT_TYPE(SPDY_SESSION_RECV_DATA) 1207 EVENT_TYPE(SPDY_SESSION_RECV_DATA)
1208 1208
1209 // This event is sent for a receiving SPDY PUSH_PROMISE frame.
1210 // The following parameters are attached:
1211 // {
1212 // "headers": <The list of header:value pairs>,
1213 // "id": <The stream id>,
1214 // "promised_stream_id": <The stream id>,
1215 // }
1216 EVENT_TYPE(SPDY_SESSION_RECV_PUSH_PROMISE)
1217
1209 // A stream is stalled by the session send window being closed. 1218 // A stream is stalled by the session send window being closed.
1210 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW) 1219 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW)
1211 1220
1212 // A stream is stalled by its send window being closed. 1221 // A stream is stalled by its send window being closed.
1213 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW) 1222 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW)
1214 1223
1215 // Session is closing 1224 // Session is closing
1216 // { 1225 // {
1217 // "net_error" : <The error status of the closure>, 1226 // "net_error" : <The error status of the closure>,
1218 // "description": <The textual description for the closure>, 1227 // "description": <The textual description for the closure>,
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
2324 // entry. It contains no parameters. 2333 // entry. It contains no parameters.
2325 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) 2334 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN)
2326 2335
2327 // This event is created when the Simple Cache finishes a CloseEntry call. It 2336 // This event is created when the Simple Cache finishes a CloseEntry call. It
2328 // contains no parameters. 2337 // contains no parameters.
2329 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) 2338 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END)
2330 2339
2331 // This event is created (in a source of the same name) when the internal DNS 2340 // This event is created (in a source of the same name) when the internal DNS
2332 // resolver creates a UDP socket to check for global IPv6 connectivity. 2341 // resolver creates a UDP socket to check for global IPv6 connectivity.
2333 EVENT_TYPE(IPV6_REACHABILITY_CHECK) 2342 EVENT_TYPE(IPV6_REACHABILITY_CHECK)
OLDNEW
« no previous file with comments | « no previous file | net/spdy/spdy_network_transaction_unittest.cc » ('j') | net/spdy/spdy_session.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698