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

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

Issue 8230037: Send PING to check the status of the SPDY connection. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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 | « net/base/net_error_list.h ('k') | net/base/run_all_unittests.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 833 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 EVENT_TYPE(SPDY_SESSION_RST_STREAM) 844 EVENT_TYPE(SPDY_SESSION_RST_STREAM)
845 845
846 // Sending of a RST_STREAM 846 // Sending of a RST_STREAM
847 // The following parameters are attached: 847 // The following parameters are attached:
848 // { 848 // {
849 // "stream_id": <The stream ID for the window update>, 849 // "stream_id": <The stream ID for the window update>,
850 // "status": <The reason for the RST_STREAM>, 850 // "status": <The reason for the RST_STREAM>,
851 // } 851 // }
852 EVENT_TYPE(SPDY_SESSION_SEND_RST_STREAM) 852 EVENT_TYPE(SPDY_SESSION_SEND_RST_STREAM)
853 853
854 // Sending of a SPDY PING frame.
855 // The following parameters are attached:
856 // {
857 // "unique_id": <The unique id of the PING message>,
858 // }
859 EVENT_TYPE(SPDY_SESSION_PING)
860
854 // Receipt of a SPDY GOAWAY frame. 861 // Receipt of a SPDY GOAWAY frame.
855 // The following parameters are attached: 862 // The following parameters are attached:
856 // { 863 // {
857 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>, 864 // "last_accepted_stream_id": <Last stream id accepted by the server, duh>,
858 // "active_streams": <Number of active streams>, 865 // "active_streams": <Number of active streams>,
859 // "unclaimed_streams": <Number of unclaimed push streams>, 866 // "unclaimed_streams": <Number of unclaimed push streams>,
860 // } 867 // }
861 EVENT_TYPE(SPDY_SESSION_GOAWAY) 868 EVENT_TYPE(SPDY_SESSION_GOAWAY)
862 869
863 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window). 870 // Receipt of a SPDY WINDOW_UPDATE frame (which controls the send window).
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1217 1224
1218 // ------------------------------------------------------------------------ 1225 // ------------------------------------------------------------------------
1219 // HostBlacklistManager 1226 // HostBlacklistManager
1220 // ------------------------------------------------------------------------ 1227 // ------------------------------------------------------------------------
1221 1228
1222 // TODO(joaodasilva): Layering violation, see comment above. 1229 // TODO(joaodasilva): Layering violation, see comment above.
1223 // http://crbug.com/90674. 1230 // http://crbug.com/90674.
1224 1231
1225 // This event is created when a request is blocked by a policy. 1232 // This event is created when a request is blocked by a policy.
1226 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST) 1233 EVENT_TYPE(CHROME_POLICY_ABORTED_REQUEST)
OLDNEW
« no previous file with comments | « net/base/net_error_list.h ('k') | net/base/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698