| Index: net/base/address_list.h
|
| diff --git a/net/base/address_list.h b/net/base/address_list.h
|
| index d2a13abc9111804e0a1f24e989d1277bf3bea6d7..9b4a67418565cd951c3101ffab301d20f4c60bc7 100644
|
| --- a/net/base/address_list.h
|
| +++ b/net/base/address_list.h
|
| @@ -82,6 +82,9 @@ class NET_EXPORT AddressList {
|
| iterator end() { return endpoints_.end(); }
|
| const_iterator end() const { return endpoints_.end(); }
|
|
|
| + const std::vector<net::IPEndPoint>& endpoints() const { return endpoints_; }
|
| + std::vector<net::IPEndPoint>& endpoints() { return endpoints_; }
|
| +
|
| private:
|
| std::vector<IPEndPoint> endpoints_;
|
| // TODO(szym): Remove. http://crbug.com/126134
|
|
|