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

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

Issue 21368005: Detect domain-specific resolvers on OS X and disable DnsClient in such cases. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update net.gyp Created 7 years, 4 months 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 | Annotate | Revision Log
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 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698