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

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

Issue 423813002: Sdch view for net-internals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unnecessary include Created 6 years, 1 month 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
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 2398 matching lines...) Expand 10 before | Expand all | Expand 10 after
2409 // entry. It contains no parameters. 2409 // entry. It contains no parameters.
2410 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) 2410 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN)
2411 2411
2412 // This event is created when the Simple Cache finishes a CloseEntry call. It 2412 // This event is created when the Simple Cache finishes a CloseEntry call. It
2413 // contains no parameters. 2413 // contains no parameters.
2414 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) 2414 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END)
2415 2415
2416 // This event is created (in a source of the same name) when the internal DNS 2416 // This event is created (in a source of the same name) when the internal DNS
2417 // resolver creates a UDP socket to check for global IPv6 connectivity. 2417 // resolver creates a UDP socket to check for global IPv6 connectivity.
2418 EVENT_TYPE(IPV6_REACHABILITY_CHECK) 2418 EVENT_TYPE(IPV6_REACHABILITY_CHECK)
2419
2420 // ------------------------------------------------------------------------
2421 // SDCH
2422 // ------------------------------------------------------------------------
2423
2424 // This event is created when some problem occurs during sdch-encoded resource
2425 // handling. It contains the following parameters:
2426 // {
2427 // "sdch_problem_code": <SDCH problem code>
mmenke 2014/10/30 21:18:52 Add something like: "net_error": <Always ERR_FAI
baranovich 2014/10/31 19:55:33 Done.
2428 // }
2429 EVENT_TYPE(SDCH_DECODING_ERROR)
2430
2431 // This event is created when some problem occurs during sdch dictionary fetch.
2432 // It contains the following parameters:
2433 // {
2434 // "dictionary_url": <Dictionary url>,
2435 // "sdch_problem_code": <SDCH problem code>,
2436 // "net_error": <Network error code. To make net-internals paint source
2437 // with red>,
mmenke 2014/10/30 21:18:52 Probably shouldn't mention net-internals in net/,
baranovich 2014/10/31 19:55:33 Done.
2438 // }
2439 EVENT_TYPE(SDCH_DICTIONARY_ERROR)
2440
2441 // This event is created when SdchDictionaryFetcher starts fetch. It contains
2442 // no parameters.
2443 EVENT_TYPE(SDCH_DICTIONARY_FETCH)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698