diff options
| author | Wale Ogunwale <ogunwale@google.com> | 2019-02-11 03:09:10 -0800 |
|---|---|---|
| committer | Wale Ogunwale <ogunwale@google.com> | 2019-02-21 20:15:56 -0800 |
| commit | 691af68a3c07f0cd5371528cc4ca094f8fa8f505 (patch) | |
| tree | 3f953a177acda48551df8859c87f77f5e638d805 /core/java/android/app/ContextImpl.java | |
| parent | f4ac4e7fb1cb13f9c7ef7e683ce3455d99ed028c (diff) | |
Added some TestApi that are already used by CTS
Allows us to remove the use of private platform API from CTS.
Bug: 124134247
Test: builds
Change-Id: Iceb81ff7c9385e877d2612fbb7b506245d116928
Diffstat (limited to 'core/java/android/app/ContextImpl.java')
| -rw-r--r-- | core/java/android/app/ContextImpl.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/app/ContextImpl.java b/core/java/android/app/ContextImpl.java index b792ad2a745c..b607f9adebbe 100644 --- a/core/java/android/app/ContextImpl.java +++ b/core/java/android/app/ContextImpl.java @@ -19,6 +19,7 @@ package android.app; import android.annotation.IntDef; import android.annotation.NonNull; import android.annotation.Nullable; +import android.annotation.TestApi; import android.annotation.UnsupportedAppUsage; import android.content.AutofillOptions; import android.content.BroadcastReceiver; @@ -2283,8 +2284,8 @@ class ContextImpl extends Context { return (mFlags & Context.CONTEXT_IGNORE_SECURITY) != 0; } + @TestApi @Override - @UnsupportedAppUsage public Display getDisplay() { if (mDisplay == null) { return mResourcesManager.getAdjustedDisplay(Display.DEFAULT_DISPLAY, |
