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

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: responded to review 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
« no previous file with comments | « no previous file | net/dns/dns_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1609 matching lines...) Expand 10 before | Expand all | Expand 10 after
1620 // { 1620 // {
1621 // "new_connection_type": <Type of the new connection> 1621 // "new_connection_type": <Type of the new connection>
1622 // } 1622 // }
1623 EVENT_TYPE(NETWORK_CHANGED) 1623 EVENT_TYPE(NETWORK_CHANGED)
1624 1624
1625 // This event is emitted whenever HostResolverImpl receives a new DnsConfig 1625 // This event is emitted whenever HostResolverImpl receives a new DnsConfig
1626 // from the DnsConfigService. 1626 // from the DnsConfigService.
1627 // { 1627 // {
1628 // "nameservers": <List of name server IPs>, 1628 // "nameservers": <List of name server IPs>,
1629 // "search": <List of domain suffixes>, 1629 // "search": <List of domain suffixes>,
1630 // "unhandled_options": <See DnsConfig>,
1630 // "append_to_multi_label_name": <See DnsConfig>, 1631 // "append_to_multi_label_name": <See DnsConfig>,
1631 // "ndots": <See DnsConfig>, 1632 // "ndots": <See DnsConfig>,
1632 // "timeout": <See DnsConfig>, 1633 // "timeout": <See DnsConfig>,
1633 // "attempts": <See DnsConfig>, 1634 // "attempts": <See DnsConfig>,
1634 // "rotate": <See DnsConfig>, 1635 // "rotate": <See DnsConfig>,
1635 // "edns0": <See DnsConfig>, 1636 // "edns0": <See DnsConfig>,
1636 // "num_hosts": <Number of entries in the HOSTS file> 1637 // "num_hosts": <Number of entries in the HOSTS file>
1637 // } 1638 // }
1638 EVENT_TYPE(DNS_CONFIG_CHANGED) 1639 EVENT_TYPE(DNS_CONFIG_CHANGED)
1639 1640
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
2220 // more references to the entry remaining. 2221 // more references to the entry remaining.
2221 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_CALL) 2222 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_CALL)
2222 2223
2223 // This event is created when the Simple Cache actually starts closing a cache 2224 // This event is created when the Simple Cache actually starts closing a cache
2224 // entry. It contains no parameters. 2225 // entry. It contains no parameters.
2225 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN) 2226 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_BEGIN)
2226 2227
2227 // This event is created when the Simple Cache finishes a CloseEntry call. It 2228 // This event is created when the Simple Cache finishes a CloseEntry call. It
2228 // contains no parameters. 2229 // contains no parameters.
2229 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END) 2230 EVENT_TYPE(SIMPLE_CACHE_ENTRY_CLOSE_END)
OLDNEW
« no previous file with comments | « no previous file | net/dns/dns_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698