| 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 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 // { | 1568 // { |
| 1569 // "new_connection_type": <Type of the new connection> | 1569 // "new_connection_type": <Type of the new connection> |
| 1570 // } | 1570 // } |
| 1571 EVENT_TYPE(NETWORK_CHANGED) | 1571 EVENT_TYPE(NETWORK_CHANGED) |
| 1572 | 1572 |
| 1573 // This event is emitted whenever HostResolverImpl receives a new DnsConfig | 1573 // This event is emitted whenever HostResolverImpl receives a new DnsConfig |
| 1574 // from the DnsConfigService. | 1574 // from the DnsConfigService. |
| 1575 // { | 1575 // { |
| 1576 // "nameservers": <List of name server IPs>, | 1576 // "nameservers": <List of name server IPs>, |
| 1577 // "search": <List of domain suffixes>, | 1577 // "search": <List of domain suffixes>, |
| 1578 // "unhandled_options": <See DnsConfig>, |
| 1578 // "append_to_multi_label_name": <See DnsConfig>, | 1579 // "append_to_multi_label_name": <See DnsConfig>, |
| 1579 // "ndots": <See DnsConfig>, | 1580 // "ndots": <See DnsConfig>, |
| 1580 // "timeout": <See DnsConfig>, | 1581 // "timeout": <See DnsConfig>, |
| 1581 // "attempts": <See DnsConfig>, | 1582 // "attempts": <See DnsConfig>, |
| 1582 // "rotate": <See DnsConfig>, | 1583 // "rotate": <See DnsConfig>, |
| 1583 // "edns0": <See DnsConfig>, | 1584 // "edns0": <See DnsConfig>, |
| 1584 // "num_hosts": <Number of entries in the HOSTS file> | 1585 // "num_hosts": <Number of entries in the HOSTS file> |
| 1585 // } | 1586 // } |
| 1586 EVENT_TYPE(DNS_CONFIG_CHANGED) | 1587 EVENT_TYPE(DNS_CONFIG_CHANGED) |
| 1587 | 1588 |
| (...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2007 // } | 2008 // } |
| 2008 EVENT_TYPE(FTP_DATA_CONNECTION) | 2009 EVENT_TYPE(FTP_DATA_CONNECTION) |
| 2009 | 2010 |
| 2010 // This event is created when FTP control connection response is processed. | 2011 // This event is created when FTP control connection response is processed. |
| 2011 // It contains following parameters: | 2012 // It contains following parameters: |
| 2012 // { | 2013 // { |
| 2013 // "lines": <list of strings - each representing a line of the response> | 2014 // "lines": <list of strings - each representing a line of the response> |
| 2014 // "status_code": <numeric status code of the response> | 2015 // "status_code": <numeric status code of the response> |
| 2015 // } | 2016 // } |
| 2016 EVENT_TYPE(FTP_CONTROL_RESPONSE) | 2017 EVENT_TYPE(FTP_CONTROL_RESPONSE) |
| OLD | NEW |