1 package com.android.systemui.mediaprojection.appselector
2 
3 import android.os.IBinder
4 
5 /**
6  * Interface that allows to continue the media projection flow and return the selected app
7  * result to the original caller.
8  */
9 interface MediaProjectionAppSelectorResultHandler {
10     /**
11      * Return selected app to the original caller of the media projection app picker.
12      * @param launchCookie launch cookie of the launched activity of the target app
13      */
14     fun returnSelectedApp(launchCookie: IBinder)
15 }
16