diff options
author | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-04 22:20:52 +0000 |
---|---|---|
committer | wtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-04 22:20:52 +0000 |
commit | 171f683f8e4ba55dbf5e85f3c2c039a10fb65260 (patch) | |
tree | c5f4d224f2d3f8d182d03f12ccdde4d155ddc65a /net/proxy | |
parent | 5b687efcc9facb628f69e4d53cf9b9abdc6a5fcd (diff) | |
download | chromium_src-171f683f8e4ba55dbf5e85f3c2c039a10fb65260.zip chromium_src-171f683f8e4ba55dbf5e85f3c2c039a10fb65260.tar.gz chromium_src-171f683f8e4ba55dbf5e85f3c2c039a10fb65260.tar.bz2 |
Change the obsolete ProxyConfigServiceNull to ProxyConfigServiceDirect.
R=eroman@chromium.org
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/6931011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84138 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy')
-rw-r--r-- | net/proxy/proxy_service.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc index 5391c5d..a134133 100644 --- a/net/proxy/proxy_service.cc +++ b/net/proxy/proxy_service.cc @@ -867,7 +867,7 @@ ProxyConfigService* ProxyService::CreateSystemProxyConfigService( #else LOG(WARNING) << "Failed to choose a system proxy settings fetcher " "for this platform."; - return new ProxyConfigServiceNull(); + return new ProxyConfigServiceDirect(); #endif } |