net_info_source_list.h 1009 B

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