| Index: webrtc/base/ifaddrs-android.h | 
| diff --git a/webrtc/base/ifaddrs-android.h b/webrtc/base/ifaddrs-android.h | 
| index 10890af65250d6ebd4e2372c85e584a2edaacf6b..9c49c9ffb0f8e5f729aea595702ded8c18753bce 100644 | 
| --- a/webrtc/base/ifaddrs-android.h | 
| +++ b/webrtc/base/ifaddrs-android.h | 
| @@ -11,29 +11,9 @@ | 
| #ifndef WEBRTC_BASE_IFADDRS_ANDROID_H_ | 
| #define WEBRTC_BASE_IFADDRS_ANDROID_H_ | 
|  | 
| -#include <stdio.h> | 
| -#include <sys/socket.h> | 
|  | 
| - | 
| -// Implementation of getifaddrs for Android. | 
| -// Fills out a list of ifaddr structs (see below) which contain information | 
| -// about every network interface available on the host. | 
| -// See 'man getifaddrs' on Linux or OS X (nb: it is not a POSIX function). | 
| -struct ifaddrs { | 
| -  struct ifaddrs* ifa_next; | 
| -  char* ifa_name; | 
| -  unsigned int ifa_flags; | 
| -  struct sockaddr* ifa_addr; | 
| -  struct sockaddr* ifa_netmask; | 
| -  // Real ifaddrs has broadcast, point to point and data members. | 
| -  // We don't need them (yet?). | 
| -}; | 
| - | 
| -namespace rtc { | 
| - | 
| -int getifaddrs(struct ifaddrs** result); | 
| -void freeifaddrs(struct ifaddrs* addrs); | 
| - | 
| -}  // namespace rtc | 
| +// This header is deprecated and is just left here temporarily during | 
| +// refactoring. See https://bugs.webrtc.org/7634 for more details. | 
| +#include "webrtc/rtc_base/ifaddrs-android.h" | 
|  | 
| #endif  // WEBRTC_BASE_IFADDRS_ANDROID_H_ | 
|  |