| Index: net/proxy/proxy_service.cc
|
| diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
|
| index 3cd82a5997ff849f17feda0abe33db59c276dce0..35ccfbd4daf5237213ced96187687bf24010d59b 100644
|
| --- a/net/proxy/proxy_service.cc
|
| +++ b/net/proxy/proxy_service.cc
|
| @@ -41,6 +41,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;
|
| @@ -1453,6 +1455,10 @@ ProxyConfigService* ProxyService::CreateSystemProxyConfigService(
|
| static_cast<MessageLoopForIO*>(file_loop));
|
|
|
| return linux_config_service;
|
| +#elif defined(OS_ANDROID)
|
| + return new ProxyConfigServiceAndroid(
|
| + io_thread_task_runner,
|
| + MessageLoopForUI::current()->message_loop_proxy());
|
| #else
|
| LOG(WARNING) << "Failed to choose a system proxy settings fetcher "
|
| "for this platform.";
|
|
|