Merge "Add @TestApi for field needed for test" into pi-dev

am: d8a6f0cd94

Change-Id: Ic57c03646b7b77810747eb8d067be985001d331f
This commit is contained in:
Marco Nelissen
2018-04-05 14:05:21 -07:00
committed by android-build-merger
2 changed files with 11 additions and 1 deletions

View File

@@ -467,6 +467,14 @@ package android.location {
}
package android.media.audiofx {
public class AudioEffect {
field public static final java.util.UUID EFFECT_TYPE_NULL;
}
}
package android.net {
public final class IpSecManager {

View File

@@ -18,6 +18,7 @@ package android.media.audiofx;
import android.annotation.SdkConstant;
import android.annotation.SdkConstant.SdkConstantType;
import android.annotation.TestApi;
import android.app.ActivityThread;
import android.os.Handler;
import android.os.Looper;
@@ -133,9 +134,10 @@ public class AudioEffect {
.fromString("7261676f-6d75-7369-6364-28e2fd3ac39e");
/**
* Null effect UUID. Used when the UUID for effect type of
* Null effect UUID. See {@link AudioEffect(UUID, UUID, int, int)} for use.
* @hide
*/
@TestApi
public static final UUID EFFECT_TYPE_NULL = UUID
.fromString("ec7178ec-e5e1-4432-a3f4-4657e6795210");