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

Unified Diff: chrome/browser/net/chrome_url_request_context.cc

Issue 113043: Fix gconf for the linux proxy config service.... (Closed) Base URL: http://src.chromium.org/svn/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 | « chrome/app/chrome_dll_main.cc ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/chrome_url_request_context.cc
===================================================================
--- chrome/browser/net/chrome_url_request_context.cc (revision 16488)
+++ chrome/browser/net/chrome_url_request_context.cc (working copy)
@@ -95,9 +95,11 @@
use_v8 = false; // Fallback to non-v8 implementation.
}
- return use_v8 ?
- net::ProxyService::CreateUsingV8Resolver(proxy_config.get(), context) :
- net::ProxyService::Create(proxy_config.get());
+ return net::ProxyService::Create(
+ proxy_config.get(),
+ use_v8,
+ context,
+ g_browser_process->io_thread()->message_loop());
}
// static
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | net/http/http_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698