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

Unified Diff: net/proxy/proxy_service.h

Issue 126303: Add a "LoadLog*" parameter to transactions, hostresolver, clientsocketpool. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: sync again Created 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/proxy/proxy_resolver_js_bindings.cc ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/proxy/proxy_service.h
===================================================================
--- net/proxy/proxy_service.h (revision 23124)
+++ net/proxy/proxy_service.h (working copy)
@@ -25,6 +25,7 @@
namespace net {
class InitProxyResolver;
+class LoadLog;
class ProxyConfigService;
class ProxyResolver;
class ProxyScriptFetcher;
@@ -63,7 +64,10 @@
// 3. WPAD auto-detection
//
// TODO(eroman): see http://crbug.com/9985; the outline above is too simple.
- int ResolveProxy(const GURL& url,
+ //
+ // Profiling information for the request is saved to |load_log| if non-NULL.
+ int ResolveProxy(LoadLog* load_log,
+ const GURL& url,
ProxyInfo* results,
CompletionCallback* callback,
PacRequest** pac_request);
@@ -79,7 +83,9 @@
//
// Returns ERR_FAILED if there is not another proxy config to try.
//
- int ReconsiderProxyAfterError(const GURL& url,
+ // Profiling information for the request is saved to |load_log| if non-NULL.
+ int ReconsiderProxyAfterError(LoadLog* load_log,
+ const GURL& url,
ProxyInfo* results,
CompletionCallback* callback,
PacRequest** pac_request);
@@ -262,12 +268,14 @@
SyncProxyServiceHelper(MessageLoop* io_message_loop,
ProxyService* proxy_service);
- int ResolveProxy(const GURL& url, ProxyInfo* proxy_info);
- int ReconsiderProxyAfterError(const GURL& url, ProxyInfo* proxy_info);
+ int ResolveProxy(LoadLog* load_log, const GURL& url, ProxyInfo* proxy_info);
+ int ReconsiderProxyAfterError(LoadLog* load_log,
+ const GURL& url,
+ ProxyInfo* proxy_info);
private:
- void StartAsyncResolve(const GURL& url);
- void StartAsyncReconsider(const GURL& url);
+ void StartAsyncResolve(LoadLog* load_log, const GURL& url);
+ void StartAsyncReconsider(LoadLog* load_log, const GURL& url);
void OnCompletion(int result);
« no previous file with comments | « net/proxy/proxy_resolver_js_bindings.cc ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698