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

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: fixing nits. Add event for ResponseCorruptionDetection 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>,
2428 // "net_error": <Always ERR_FAILED, present just to indicate this is a
2429 // failure>,
2430 // }
2431 EVENT_TYPE(SDCH_DECODING_ERROR)
2432
2433 // This event is created when SdchFilter initialization fails due to the
2434 // response corruption. It contains the following parameters:
2435 // {
2436 // "cause": <Response corruption detection cause>,
2437 // "cached": <True if response was read from cache>,
2438 // "net_error": <Always ERR_FAILED, present just to indicate this is a
2439 // failure>,
Randy Smith (Not in Mondays) 2014/11/03 21:01:27 I think I'd suggest leaving out the net_error/ERR_
baranovich 2014/11/03 22:34:23 Done.
2440 // }
2441 EVENT_TYPE(SDCH_RESPONSE_CORRUPTION_DETECTION)
2442
2443 // This event is created when some problem occurs during sdch dictionary fetch.
2444 // It contains the following parameters:
2445 // {
2446 // "dictionary_url": <Dictionary url>,
2447 // "sdch_problem_code": <SDCH problem code>,
2448 // "net_error": <Only present on unexpected errors. Always ERR_FAILED when
2449 // present. Used to indicate this is a real failure>,
2450 // }
2451 EVENT_TYPE(SDCH_DICTIONARY_ERROR)
2452
2453 // This event is created when SdchDictionaryFetcher starts fetch. It contains
2454 // no parameters.
2455 EVENT_TYPE(SDCH_DICTIONARY_FETCH)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698