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

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: Rebasing. Some strange andriod compile errors in skia 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') | 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 1192 matching lines...) Expand 10 before | Expand all | Expand 10 after
1203 EVENT_TYPE(SPDY_SESSION_SEND_DATA) 1203 EVENT_TYPE(SPDY_SESSION_SEND_DATA)
1204 1204
1205 // Receiving a data frame 1205 // Receiving a data frame
1206 // { 1206 // {
1207 // "stream_id": <The stream ID for the window update>, 1207 // "stream_id": <The stream ID for the window update>,
1208 // "length" : <The size of data received>, 1208 // "length" : <The size of data received>,
1209 // "flags" : <Receive data flags>, 1209 // "flags" : <Receive data flags>,
1210 // } 1210 // }
1211 EVENT_TYPE(SPDY_SESSION_RECV_DATA) 1211 EVENT_TYPE(SPDY_SESSION_RECV_DATA)
1212 1212
1213 // This event is sent for a receiving SPDY PUSH_PROMISE frame.
1214 // The following parameters are attached:
1215 // {
1216 // "headers": <The list of header:value pairs>,
1217 // "id": <The stream id>,
1218 // "promised_stream_id": <The stream id>,
1219 // }
1220 EVENT_TYPE(SPDY_SESSION_RECV_PUSH_PROMISE)
1221
1213 // A stream is stalled by the session send window being closed. 1222 // A stream is stalled by the session send window being closed.
1214 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW) 1223 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_SESSION_SEND_WINDOW)
1215 1224
1216 // A stream is stalled by its send window being closed. 1225 // A stream is stalled by its send window being closed.
1217 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW) 1226 EVENT_TYPE(SPDY_SESSION_STREAM_STALLED_BY_STREAM_SEND_WINDOW)
1218 1227
1219 // Session is closing 1228 // Session is closing
1220 // { 1229 // {
1221 // "net_error" : <The error status of the closure>, 1230 // "net_error" : <The error status of the closure>,
1222 // "description": <The textual description for the closure>, 1231 // "description": <The textual description for the closure>,
(...skipping 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after
2363 // entry. It contains no parameters. 2372 // entry. It contains no parameters.
2364 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) 2373 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN)
2365 2374
2366 // This event is created when the Simple Cache finishes a CloseEntry call. It 2375 // This event is created when the Simple Cache finishes a CloseEntry call. It
2367 // contains no parameters. 2376 // contains no parameters.
2368 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) 2377 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END)
2369 2378
2370 // This event is created (in a source of the same name) when the internal DNS 2379 // This event is created (in a source of the same name) when the internal DNS
2371 // resolver creates a UDP socket to check for global IPv6 connectivity. 2380 // resolver creates a UDP socket to check for global IPv6 connectivity.
2372 EVENT_TYPE(IPV6_REACHABILITY_CHECK) 2381 EVENT_TYPE(IPV6_REACHABILITY_CHECK)
OLDNEW
« no previous file with comments | « no previous file | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698