| Index: net/proxy/proxy_list.cc
|
| diff --git a/net/proxy/proxy_list.cc b/net/proxy/proxy_list.cc
|
| index 4dc46267d05f32419edb054ded590d4a479758c3..524cc1583ebd60d7a41b9ace1af1ad3bd52f6c1e 100644
|
| --- a/net/proxy/proxy_list.cc
|
| +++ b/net/proxy/proxy_list.cc
|
| @@ -109,6 +109,10 @@ const ProxyServer& ProxyList::Get() const {
|
| return proxies_[0];
|
| }
|
|
|
| +const std::vector<ProxyServer>& ProxyList::GetAll() const {
|
| + return proxies_;
|
| +}
|
| +
|
| void ProxyList::SetFromPacString(const std::string& pac_string) {
|
| base::StringTokenizer entry_tok(pac_string, ";");
|
| proxies_.clear();
|
|
|