Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: webrtc/base/ifaddrs-android.h

Issue 2877023002: Move webrtc/{base => rtc_base} (Closed)
Patch Set: update presubmit.py and DEPS include rules Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/base/httpserver_unittest.cc ('k') | webrtc/base/ifaddrs-android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « webrtc/base/httpserver_unittest.cc ('k') | webrtc/base/ifaddrs-android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698