Index: net/base/ip_address.h |
diff --git a/net/base/ip_address.h b/net/base/ip_address.h |
index 2fb54b40adf258cd4914eff447a249e9095ac086..54a0c2e9e7a2e73fb9ee1cf56f0f0b1321673b52 100644 |
--- a/net/base/ip_address.h |
+++ b/net/base/ip_address.h |
@@ -105,6 +105,8 @@ class NET_EXPORT IPAddress { |
// This class is copyable and assignable. |
}; |
+typedef std::vector<IPAddress> IPAddressList; |
eroman
2016/03/08 21:04:03
Please use the new C++ way:
using IPAddressList =
martijnc
2016/03/09 16:44:27
Done.
|
+ |
// TODO(Martijnc): These utility functions currently forward the calls to |
// the IPAddressNumber implementations. Move the implementations over when |
// the IPAddressNumber migration is complete. https://crbug.com/496258. |