| Index: net/proxy/proxy_service.cc
|
| diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
|
| index 1c9203348ae908a1bcf36862bf4fd443b85011cb..5634167f67fe0e0d8974bc2491e4d93ca74cbf90 100644
|
| --- a/net/proxy/proxy_service.cc
|
| +++ b/net/proxy/proxy_service.cc
|
| @@ -40,6 +40,8 @@
|
| #include "net/proxy/proxy_resolver_mac.h"
|
| #elif defined(OS_LINUX) && !defined(OS_CHROMEOS)
|
| #include "net/proxy/proxy_config_service_linux.h"
|
| +#elif defined(OS_ANDROID)
|
| +#include "net/proxy/proxy_config_service_android.h"
|
| #endif
|
|
|
| using base::TimeDelta;
|
| @@ -1451,6 +1453,8 @@ ProxyConfigService* ProxyService::CreateSystemProxyConfigService(
|
| static_cast<MessageLoopForIO*>(file_loop));
|
|
|
| return linux_config_service;
|
| +#elif defined(OS_ANDROID)
|
| + return new ProxyConfigServiceAndroid(io_loop->message_loop_proxy());
|
| #else
|
| LOG(WARNING) << "Failed to choose a system proxy settings fetcher "
|
| "for this platform.";
|
|
|