Chromium Code Reviews| Index: net/base/net_log_event_type_list.h |
| diff --git a/net/base/net_log_event_type_list.h b/net/base/net_log_event_type_list.h |
| index 0626683a59147d0924ab7a268b0dac9a9be2332e..420f7ff5f17380d4272e590c5e4183ac9d68ac32 100644 |
| --- a/net/base/net_log_event_type_list.h |
| +++ b/net/base/net_log_event_type_list.h |
| @@ -2393,3 +2393,30 @@ EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) |
| // This event is created (in a source of the same name) when the internal DNS |
| // resolver creates a UDP socket to check for global IPv6 connectivity. |
| EVENT_TYPE(IPV6_REACHABILITY_CHECK) |
| + |
| +// ------------------------------------------------------------------------ |
| +// SDCH |
| +// ------------------------------------------------------------------------ |
| + |
| +// This event is created when some problem occurs during sdch-encoded resource |
| +// handling. It contains the following parameters: |
| +// { |
| +// "sdch_problem_code": <SDCH problem code>, |
| +// "net_error": <Network error code. To make net-internals paint source |
| +// with red>, |
| +// } |
| +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.
|
| + |
| +// This event is created when some problem occurs during sdch dictionary fetch. |
| +// It contains the following parameters: |
| +// { |
| +// "dictionary_url": <Dictionary url>, |
| +// "sdch_problem_code": <SDCH problem code>, |
| +// "net_error": <Network error code. To make net-internals paint source |
| +// with red>, |
| +// } |
| +EVENT_TYPE(SDCH_DICTIONARY_FETCH_ERROR) |
| + |
| +// This event is created when SdchDictionaryFetcher starts fetch. It contains |
| +// no parameters. |
| +EVENT_TYPE(SDCH_DICTIONARY_FETCH) |