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

Unified Diff: net/proxy/proxy_service.h

Issue 115029: Making command-line specified proxy settings more flexible - allowing for set... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 7 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_script_fetcher_unittest.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 15852)
+++ net/proxy/proxy_service.h (working copy)
@@ -86,14 +86,14 @@
// |proxy_script_fetcher|.
void SetProxyScriptFetcher(ProxyScriptFetcher* proxy_script_fetcher);
- // Creates a proxy service using the specified settings. If |pi| is NULL then
+ // Creates a proxy service using the specified settings. If |pc| is NULL then
// the system's default proxy settings will be used (on Windows this will
// use IE's settings).
- static ProxyService* Create(const ProxyInfo* pi);
+ static ProxyService* Create(const ProxyConfig* pc);
- // Creates a proxy service using the specified settings. If |pi| is NULL then
+ // Creates a proxy service using the specified settings. If |pc| is NULL then
// the system's default proxy settings will be used. This is basically the
- // same as Create(const ProxyInfo*), however under the hood it uses a
+ // same as Create(const ProxyConfig*), however under the hood it uses a
// different implementation (V8). |url_request_context| is the URL request
// context that will be used if a PAC script needs to be fetched.
// ##########################################################################
@@ -102,7 +102,7 @@
// # other V8's running in the process must use v8::Locker.
// ##########################################################################
static ProxyService* CreateUsingV8Resolver(
- const ProxyInfo* pi,
+ const ProxyConfig* pc,
URLRequestContext* url_request_context);
// Creates a proxy service that always fails to fetch the proxy configuration,
« no previous file with comments | « net/proxy/proxy_script_fetcher_unittest.cc ('k') | net/proxy/proxy_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698