Merge "Test: atest -c MyRoboTests Bug: 272054982 Make VsyncEventData visible to test classes calling nativeinit" am: 52457cc775

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2534679

Change-Id: I337a4e70294236f9d0e66f443bfcaf6e13ddb157
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Kevin Liu
2023-04-13 20:48:26 +00:00
committed by Automerger Merge Worker

View File

@@ -138,8 +138,12 @@ public abstract class DisplayEventReceiver {
mMessageQueue = null; mMessageQueue = null;
} }
static final class VsyncEventData { /**
* Class to capture all inputs required for syncing events data.
*
* @hide
*/
public static final class VsyncEventData {
static final FrameTimeline[] INVALID_FRAME_TIMELINES = static final FrameTimeline[] INVALID_FRAME_TIMELINES =
{new FrameTimeline(FrameInfo.INVALID_VSYNC_ID, Long.MAX_VALUE, Long.MAX_VALUE)}; {new FrameTimeline(FrameInfo.INVALID_VSYNC_ID, Long.MAX_VALUE, Long.MAX_VALUE)};