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

Unified Diff: net/base/net_info_source_list.h

Issue 683113005: Update from chromium https://crrev.com/302282 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/load_flags_list.h ('k') | net/base/net_log_logger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/net_info_source_list.h
diff --git a/net/base/net_info_source_list.h b/net/base/net_info_source_list.h
new file mode 100644
index 0000000000000000000000000000000000000000..be3019e9183c0676cc46cbb4f0226652193130f7
--- /dev/null
+++ b/net/base/net_info_source_list.h
@@ -0,0 +1,22 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file intentionally does not have header guards, it's included
+// inside a macro to generate enum values.
+
+// Flags used to request different types of information about the current state
+// of a URLRequestContext.
+//
+// The strings don't match the enums for historical reasons.
+
+NET_INFO_SOURCE(PROXY_SETTINGS, "proxySettings", 1 << 0)
+NET_INFO_SOURCE(BAD_PROXIES, "badProxies", 1 << 1)
+NET_INFO_SOURCE(HOST_RESOLVER, "hostResolverInfo", 1 << 2)
+NET_INFO_SOURCE(SOCKET_POOL, "socketPoolInfo", 1 << 3)
+NET_INFO_SOURCE(QUIC, "quicInfo", 1 << 4)
+NET_INFO_SOURCE(SPDY_SESSIONS, "spdySessionInfo", 1 << 5)
+NET_INFO_SOURCE(SPDY_STATUS, "spdyStatus", 1 << 6)
+NET_INFO_SOURCE(SPDY_ALT_PROTO_MAPPINGS, "spdyAlternateProtocolMappings",
+ 1 << 7)
+NET_INFO_SOURCE(HTTP_CACHE, "httpCacheInfo", 1 << 8)
« no previous file with comments | « net/base/load_flags_list.h ('k') | net/base/net_log_logger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698