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

Unified Diff: net/proxy/proxy_resolver_request_context.h

Issue 11885009: Improve performance of proxy resolver by tracing DNS dependencies. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: whitespace changes Created 7 years, 11 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
Index: net/proxy/proxy_resolver_request_context.h
diff --git a/net/proxy/proxy_resolver_request_context.h b/net/proxy/proxy_resolver_request_context.h
deleted file mode 100644
index fdcced10cf39ea75a06e45533730fdb81bb40fe4..0000000000000000000000000000000000000000
--- a/net/proxy/proxy_resolver_request_context.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2010 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.
-
-#ifndef NET_PROXY_PROXY_RESOLVER_REQUEST_CONTEXT_H_
-#define NET_PROXY_PROXY_RESOLVER_REQUEST_CONTEXT_H_
-
-namespace net {
-
-class HostCache;
-class BoundNetLog;
-
-// This data structure holds state related to an invocation of
-// "FindProxyForURL()". It is used to associate per-request
-// data that can be retrieved by the bindings.
-struct ProxyResolverRequestContext {
- // All of these pointers are expected to remain valid for duration of
- // this instance's lifetime.
- ProxyResolverRequestContext(const BoundNetLog* net_log,
- HostCache* host_cache)
- : net_log(net_log),
- host_cache(host_cache) {
- }
-
- const BoundNetLog* net_log;
- HostCache* host_cache;
-};
-
-} // namespace net
-
-#endif // NET_PROXY_PROXY_RESOLVER_REQUEST_CONTEXT_H_

Powered by Google App Engine
This is Rietveld 408576698