xref: /aosp_15_r20/external/cronet/net/base/net_info_source_list.h (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2014 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef NET_BASE_NET_INFO_SOURCE_LIST_H_
6 #define NET_BASE_NET_INFO_SOURCE_LIST_H_
7 
8 // NetInfo Sources written to NetLog JSON files.
9 const char kNetInfoProxySettings[] = "proxySettings";
10 const char kNetInfoBadProxies[] = "badProxies";
11 const char kNetInfoHostResolver[] = "hostResolverInfo";
12 const char kNetInfoDohProvidersDisabledDueToFeature[] =
13     "dohProvidersDisabledDueToFeature";
14 const char kNetInfoSocketPool[] = "socketPoolInfo";
15 const char kNetInfoQuic[] = "quicInfo";
16 const char kNetInfoSpdySessions[] = "spdySessionInfo";
17 const char kNetInfoSpdyStatus[] = "spdyStatus";
18 const char kNetInfoAltSvcMappings[] = "altSvcMappings";
19 const char kNetInfoHTTPCache[] = "httpCacheInfo";
20 const char kNetInfoReporting[] = "reportingInfo";
21 const char kNetInfoFieldTrials[] = "activeFieldTrialGroups";
22 
23 #endif  // NET_BASE_NET_INFO_SOURCE_LIST_H_
24