Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/net/proxy_service_factory.h" | 5 #include "chrome/browser/net/proxy_service_factory.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/string_number_conversions.h" | 8 #include "base/string_number_conversions.h" |
| 9 #include "chrome/browser/browser_process.h" | 9 #include "chrome/browser/browser_process.h" |
| 10 #include "chrome/browser/io_thread.h" | |
| 10 #include "chrome/browser/net/pref_proxy_config_service.h" | 11 #include "chrome/browser/net/pref_proxy_config_service.h" |
| 11 #include "chrome/browser/io_thread.h" | |
| 12 #include "chrome/common/chrome_switches.h" | 12 #include "chrome/common/chrome_switches.h" |
| 13 #include "content/browser/browser_thread.h" | 13 #include "content/browser/browser_thread.h" |
| 14 #include "net/base/net_log.h" | 14 #include "net/base/net_log.h" |
| 15 #include "net/proxy/dhcp_proxy_script_fetcher_factory.h" | 15 #include "net/proxy/dhcp_proxy_script_fetcher_factory.h" |
| 16 #include "net/proxy/proxy_config_service.h" | 16 #include "net/proxy/proxy_config_service.h" |
| 17 #include "net/proxy/proxy_script_fetcher_impl.h" | 17 #include "net/proxy/proxy_script_fetcher_impl.h" |
| 18 #include "net/proxy/proxy_service.h" | 18 #include "net/proxy/proxy_service.h" |
| 19 #include "net/url_request/url_request_context.h" | 19 #include "net/url_request/url_request_context.h" |
| 20 | 20 |
| 21 #if defined(OS_CHROMEOS) | 21 #if defined(OS_CHROMEOS) |
| 22 #include "chrome/browser/chromeos/proxy_config_service.h" | 22 #include "chrome/browser/chromeos/proxy_config_service.h" |
| 23 #endif // defined(OS_CHROMEOS) | 23 #endif // defined(OS_CHROMEOS) |
| 24 | 24 |
| 25 // static | 25 // static |
| 26 net::ProxyConfigService* ProxyServiceFactory::CreateProxyConfigService( | 26 net::ProxyConfigService* ProxyServiceFactory::CreateProxyConfigService( |
| 27 PrefProxyConfigTracker* proxy_config_tracker) { | 27 PrefProxyConfigTracker* proxy_config_tracker) { |
| 28 // The linux gconf-based proxy settings getter relies on being initialized | 28 // The linux gconf-based proxy settings getter relies on being initialized |
| 29 // from the UI thread. | 29 // from the UI thread. |
| 30 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); | 30 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
| 31 | 31 |
| 32 #if defined(OS_CHROMEOS) | |
| 33 return new chromeos::ProxyConfigService( | |
| 34 g_browser_process->chromeos_proxy_config_service_impl(), | |
|
Mattias Nissler (ping if slow)
2011/10/07 13:32:10
Ah, so here is the other location where the per-pr
kuan
2011/10/18 16:25:35
this and related classes have been re-designed and
| |
| 35 proxy_config_tracker); | |
| 36 #else | |
| 32 // Create a baseline service that provides proxy configuration in case nothing | 37 // Create a baseline service that provides proxy configuration in case nothing |
| 33 // is configured through prefs (Note: prefs include command line and | 38 // is configured through prefs (Note: prefs include command line and |
| 34 // configuration policy). | 39 // configuration policy). |
| 35 net::ProxyConfigService* base_service = NULL; | |
| 36 | 40 |
| 37 // TODO(port): the IO and FILE message loops are only used by Linux. Can | 41 // TODO(port): the IO and FILE message loops are only used by Linux. Can |
| 38 // that code be moved to chrome/browser instead of being in net, so that it | 42 // that code be moved to chrome/browser instead of being in net, so that it |
| 39 // can use BrowserThread instead of raw MessageLoop pointers? See bug 25354. | 43 // can use BrowserThread instead of raw MessageLoop pointers? See bug 25354. |
| 40 #if defined(OS_CHROMEOS) | 44 net::ProxyConfigService* base_service = |
| 41 base_service = new chromeos::ProxyConfigService( | 45 net::ProxyService::CreateSystemProxyConfigService( |
| 42 g_browser_process->chromeos_proxy_config_service_impl()); | 46 g_browser_process->io_thread()->message_loop(), |
| 43 #else | 47 g_browser_process->file_thread()->message_loop()); |
| 44 base_service = net::ProxyService::CreateSystemProxyConfigService( | |
| 45 g_browser_process->io_thread()->message_loop(), | |
| 46 g_browser_process->file_thread()->message_loop()); | |
| 47 #endif // defined(OS_CHROMEOS) | |
| 48 | 48 |
| 49 return new PrefProxyConfigService(proxy_config_tracker, base_service); | 49 return new PrefProxyConfigService(proxy_config_tracker, base_service); |
| 50 #endif // defined(OS_CHROMEOS) | |
| 50 } | 51 } |
| 51 | 52 |
| 52 // static | 53 // static |
| 53 net::ProxyService* ProxyServiceFactory::CreateProxyService( | 54 net::ProxyService* ProxyServiceFactory::CreateProxyService( |
| 54 net::NetLog* net_log, | 55 net::NetLog* net_log, |
| 55 net::URLRequestContext* context, | 56 net::URLRequestContext* context, |
| 56 net::ProxyConfigService* proxy_config_service, | 57 net::ProxyConfigService* proxy_config_service, |
| 57 const CommandLine& command_line) { | 58 const CommandLine& command_line) { |
| 58 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); | 59 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
| 59 | 60 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 98 context->network_delegate()); | 99 context->network_delegate()); |
| 99 } else { | 100 } else { |
| 100 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver( | 101 proxy_service = net::ProxyService::CreateUsingSystemProxyResolver( |
| 101 proxy_config_service, | 102 proxy_config_service, |
| 102 num_pac_threads, | 103 num_pac_threads, |
| 103 net_log); | 104 net_log); |
| 104 } | 105 } |
| 105 | 106 |
| 106 return proxy_service; | 107 return proxy_service; |
| 107 } | 108 } |
| OLD | NEW |