From d9942c02e5301e4a4d08569547af2971c98fff8f Mon Sep 17 00:00:00 2001 From: Jeff DeCew Date: Mon, 13 Sep 2021 19:30:09 +0000 Subject: [PATCH] Fix Sysui-Studio by changing how a nested parcelable is referenced in an AIDL file. Test: build sysui-studio Change-Id: I07b7326ce60cae9b9bb2dcaf5835705b81cdc051 --- .../systemui/shared/communal/ICommunalSurfaceCallback.aidl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/SystemUI/shared/src/com/android/systemui/shared/communal/ICommunalSurfaceCallback.aidl b/packages/SystemUI/shared/src/com/android/systemui/shared/communal/ICommunalSurfaceCallback.aidl index 58acce00f6a6d..3d5998bffcbf8 100644 --- a/packages/SystemUI/shared/src/com/android/systemui/shared/communal/ICommunalSurfaceCallback.aidl +++ b/packages/SystemUI/shared/src/com/android/systemui/shared/communal/ICommunalSurfaceCallback.aidl @@ -16,7 +16,7 @@ package com.android.systemui.shared.communal; -import android.view.SurfaceControlViewHost; +import android.view.SurfaceControlViewHost.SurfacePackage; /** * An interface for receiving the result of a surface request. ICommunalSurfaceCallback is @@ -26,5 +26,5 @@ interface ICommunalSurfaceCallback { /** * Invoked when the CommunalSurface has generated the SurfacePackage to be displayed. */ - void onSurface(in SurfaceControlViewHost.SurfacePackage surfacePackage) = 1; + void onSurface(in SurfacePackage surfacePackage) = 1; } \ No newline at end of file