| Index: net/proxy/proxy_service.cc
|
| diff --git a/net/proxy/proxy_service.cc b/net/proxy/proxy_service.cc
|
| index 39638e24134981caa5ad145b96b2b424064b5010..2f8e40760a6e6caacf7c86cc3c1c388cb1700488 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;
|
| @@ -1428,6 +1430,8 @@ ProxyConfigService* ProxyService::CreateSystemProxyConfigService(
|
| static_cast<MessageLoopForIO*>(file_loop));
|
|
|
| return linux_config_service;
|
| +#elif defined(OS_ANDROID)
|
| + return new ProxyConfigServiceAndroid();
|
| #else
|
| LOG(WARNING) << "Failed to choose a system proxy settings fetcher "
|
| "for this platform.";
|
|
|