Merge "Fix Sysui-Studio by changing how a nested parcelable is referenced in an AIDL file."

This commit is contained in:
TreeHugger Robot
2021-09-14 01:08:03 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}