From 4f956e0fcab935800eeb3aeb66c1cbc87a47c767 Mon Sep 17 00:00:00 2001 From: Jack Yu Date: Wed, 14 Nov 2018 22:04:17 -0800 Subject: Move hidden APIs into system APIs To allow vendor code to construct LinkAddress, which is one of the parameter in the system API DataCallResponse. Test: Build Bug: 73659459 Merged-In: I3e203781d3a03285fa0e047cc8837ccb4a09016a Change-Id: I3e203781d3a03285fa0e047cc8837ccb4a09016a --- api/system-current.txt | 5 +++++ core/java/android/net/LinkAddress.java | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/api/system-current.txt b/api/system-current.txt index f9d6701ffe1d..cd7cb2751c7f 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -3090,6 +3090,11 @@ package android.net { method public void onTetheringStarted(); } + public class LinkAddress implements android.os.Parcelable { + ctor public LinkAddress(java.net.InetAddress, int); + ctor public LinkAddress(java.lang.String); + } + public final class NetworkCapabilities implements android.os.Parcelable { field public static final int NET_CAPABILITY_OEM_PAID = 22; // 0x16 } diff --git a/core/java/android/net/LinkAddress.java b/core/java/android/net/LinkAddress.java index 1bc0d327abde..77562dbd7bfa 100644 --- a/core/java/android/net/LinkAddress.java +++ b/core/java/android/net/LinkAddress.java @@ -25,6 +25,7 @@ import static android.system.OsConstants.RT_SCOPE_LINK; import static android.system.OsConstants.RT_SCOPE_SITE; import static android.system.OsConstants.RT_SCOPE_UNIVERSE; +import android.annotation.SystemApi; import android.annotation.UnsupportedAppUsage; import android.os.Parcel; import android.os.Parcelable; @@ -167,7 +168,7 @@ public class LinkAddress implements Parcelable { * @param prefixLength The prefix length. * @hide */ - @UnsupportedAppUsage + @SystemApi public LinkAddress(InetAddress address, int prefixLength) { this(address, prefixLength, 0, 0); this.scope = scopeForUnicastAddress(address); @@ -190,7 +191,7 @@ public class LinkAddress implements Parcelable { * @param string The string to parse. * @hide */ - @UnsupportedAppUsage + @SystemApi public LinkAddress(String address) { this(address, 0, 0); this.scope = scopeForUnicastAddress(this.address); -- cgit v1.2.3-59-g8ed1b