| Index: net/proxy/proxy_list.cc
|
| diff --git a/net/proxy/proxy_list.cc b/net/proxy/proxy_list.cc
|
| index b119b13ec14ea2abcc3a28efc20ff9c51ea5970e..236e7078f9a46745a57dd306e02ef543afa45f30 100644
|
| --- a/net/proxy/proxy_list.cc
|
| +++ b/net/proxy/proxy_list.cc
|
| @@ -7,12 +7,19 @@
|
| #include "base/logging.h"
|
| #include "base/string_tokenizer.h"
|
| #include "base/time.h"
|
| +#include "net/proxy/proxy_server.h"
|
|
|
| using base::TimeDelta;
|
| using base::TimeTicks;
|
|
|
| namespace net {
|
|
|
| +ProxyList::ProxyList() {
|
| +}
|
| +
|
| +ProxyList::~ProxyList() {
|
| +}
|
| +
|
| void ProxyList::Set(const std::string& proxy_uri_list) {
|
| proxies_.clear();
|
| StringTokenizer str_tok(proxy_uri_list, ";");
|
|
|