Loading core/java/android/service/games/IGameService.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -23,7 +23,12 @@ import android.service.games.IGameServiceController; * @hide */ oneway interface IGameService { @RequiresNoPermission void connected(in IGameServiceController gameServiceController); @RequiresNoPermission void disconnected(); @RequiresNoPermission void gameStarted(in GameStartedEvent gameStartedEvent); } core/java/android/service/games/IGameServiceController.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -20,5 +20,6 @@ package android.service.games; * @hide */ oneway interface IGameServiceController { @EnforcePermission("MANAGE_GAME_ACTIVITY") void createGameSession(int taskId); } core/java/android/service/games/IGameSession.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -20,7 +20,12 @@ package android.service.games; * @hide */ oneway interface IGameSession { @RequiresNoPermission void onDestroyed(); @RequiresNoPermission void onTransientSystemBarVisibilityFromRevealGestureChanged(boolean visibleDueToGesture); @RequiresNoPermission void onTaskFocusChanged(boolean focused); } core/java/android/service/games/IGameSessionController.aidl +3 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,9 @@ import com.android.internal.infra.AndroidFuture; * @hide */ oneway interface IGameSessionController { @EnforcePermission("MANAGE_GAME_ACTIVITY") void takeScreenshot(int taskId, in AndroidFuture gameScreenshotResultFuture); @JavaPassthrough(annotation="@android.annotation.RequiresPermission(android.Manifest.permission.MANAGE_GAME_ACTIVITY)") @EnforcePermission("MANAGE_GAME_ACTIVITY") void restartGame(in int taskId); } core/java/android/service/games/IGameSessionService.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,7 @@ import com.android.internal.infra.AndroidFuture; * @hide */ oneway interface IGameSessionService { @RequiresNoPermission void create( in IGameSessionController gameSessionController, in CreateGameSessionRequest createGameSessionRequest, Loading Loading
core/java/android/service/games/IGameService.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -23,7 +23,12 @@ import android.service.games.IGameServiceController; * @hide */ oneway interface IGameService { @RequiresNoPermission void connected(in IGameServiceController gameServiceController); @RequiresNoPermission void disconnected(); @RequiresNoPermission void gameStarted(in GameStartedEvent gameStartedEvent); }
core/java/android/service/games/IGameServiceController.aidl +2 −1 Original line number Diff line number Diff line Loading @@ -20,5 +20,6 @@ package android.service.games; * @hide */ oneway interface IGameServiceController { @EnforcePermission("MANAGE_GAME_ACTIVITY") void createGameSession(int taskId); }
core/java/android/service/games/IGameSession.aidl +5 −0 Original line number Diff line number Diff line Loading @@ -20,7 +20,12 @@ package android.service.games; * @hide */ oneway interface IGameSession { @RequiresNoPermission void onDestroyed(); @RequiresNoPermission void onTransientSystemBarVisibilityFromRevealGestureChanged(boolean visibleDueToGesture); @RequiresNoPermission void onTaskFocusChanged(boolean focused); }
core/java/android/service/games/IGameSessionController.aidl +3 −1 Original line number Diff line number Diff line Loading @@ -23,7 +23,9 @@ import com.android.internal.infra.AndroidFuture; * @hide */ oneway interface IGameSessionController { @EnforcePermission("MANAGE_GAME_ACTIVITY") void takeScreenshot(int taskId, in AndroidFuture gameScreenshotResultFuture); @JavaPassthrough(annotation="@android.annotation.RequiresPermission(android.Manifest.permission.MANAGE_GAME_ACTIVITY)") @EnforcePermission("MANAGE_GAME_ACTIVITY") void restartGame(in int taskId); }
core/java/android/service/games/IGameSessionService.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,7 @@ import com.android.internal.infra.AndroidFuture; * @hide */ oneway interface IGameSessionService { @RequiresNoPermission void create( in IGameSessionController gameSessionController, in CreateGameSessionRequest createGameSessionRequest, Loading