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

This commit is contained in:
TreeHugger Robot
2018-04-05 20:41:24 +00:00
committed by Android (Google) Code Review
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");