Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 2375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2386 // entry. It contains no parameters. | 2386 // entry. It contains no parameters. |
| 2387 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) | 2387 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) |
| 2388 | 2388 |
| 2389 // This event is created when the Simple Cache finishes a CloseEntry call. It | 2389 // This event is created when the Simple Cache finishes a CloseEntry call. It |
| 2390 // contains no parameters. | 2390 // contains no parameters. |
| 2391 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) | 2391 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) |
| 2392 | 2392 |
| 2393 // This event is created (in a source of the same name) when the internal DNS | 2393 // This event is created (in a source of the same name) when the internal DNS |
| 2394 // resolver creates a UDP socket to check for global IPv6 connectivity. | 2394 // resolver creates a UDP socket to check for global IPv6 connectivity. |
| 2395 EVENT_TYPE(IPV6_REACHABILITY_CHECK) | 2395 EVENT_TYPE(IPV6_REACHABILITY_CHECK) |
| 2396 | |
| 2397 // ------------------------------------------------------------------------ | |
| 2398 // SDCH | |
| 2399 // ------------------------------------------------------------------------ | |
| 2400 | |
| 2401 // This event is created when some problem occurs during sdch-encoded resource | |
| 2402 // handling. It contains the following parameters: | |
| 2403 // { | |
| 2404 // "sdch_problem_code": <SDCH problem code>, | |
| 2405 // "net_error": <Network error code. To make net-internals paint source | |
| 2406 // with red>, | |
| 2407 // } | |
| 2408 EVENT_TYPE(SDCH_RESOURCE_ERROR) | |
|
Randy Smith (Not in Mondays)
2014/09/29 21:21:57
What would you think of changing the name of this
baranovich
2014/09/30 13:16:51
Done.
| |
| 2409 | |
| 2410 // This event is created when some problem occurs during sdch dictionary fetch. | |
| 2411 // It contains the following parameters: | |
| 2412 // { | |
| 2413 // "dictionary_url": <Dictionary url>, | |
| 2414 // "sdch_problem_code": <SDCH problem code>, | |
| 2415 // "net_error": <Network error code. To make net-internals paint source | |
| 2416 // with red>, | |
| 2417 // } | |
| 2418 EVENT_TYPE(SDCH_DICTIONARY_FETCH_ERROR) | |
| 2419 | |
| 2420 // This event is created when SdchDictionaryFetcher starts fetch. It contains | |
| 2421 // no parameters. | |
| 2422 EVENT_TYPE(SDCH_DICTIONARY_FETCH) | |
| OLD | NEW |