Chromium Code Reviews| Index: webrtc/base/ipaddress.h |
| diff --git a/webrtc/base/ipaddress.h b/webrtc/base/ipaddress.h |
| index 0789017e6d254a07098e8777c40039283a5144ce..ef1e3d817004813d837e8ae1234a175bc76887bd 100644 |
| --- a/webrtc/base/ipaddress.h |
| +++ b/webrtc/base/ipaddress.h |
| @@ -112,16 +112,12 @@ class IPAddress { |
| // Whether this is an unspecified IP address. |
| bool IsNil() const; |
| - static void set_strip_sensitive(bool enable); |
|
pthatcher1
2015/11/25 23:08:23
This is going to break Chrome FYI bots, is it not?
pbos-webrtc
2015/11/25 23:09:52
I already broke them (due to nacl), this will help
|
| - |
| private: |
| int family_; |
| union { |
| in_addr ip4; |
| in6_addr ip6; |
| } u_; |
| - |
| - static bool strip_sensitive_; |
| }; |
| // IP class which could represent IPv6 address flags which is only |