1 /* 2 * Copyright (C) 2022 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.wm.shell.sysui; 18 19 /** 20 * General shell-related constants that are shared with users of the library. 21 */ 22 public class ShellSharedConstants { 23 // See IPip.aidl 24 public static final String KEY_EXTRA_SHELL_PIP = "extra_shell_pip"; 25 // See IBubbles.aidl 26 public static final String KEY_EXTRA_SHELL_BUBBLES = "extra_shell_bubbles"; 27 // See ISplitScreen.aidl 28 public static final String KEY_EXTRA_SHELL_SPLIT_SCREEN = "extra_shell_split_screen"; 29 // See IOneHanded.aidl 30 public static final String KEY_EXTRA_SHELL_ONE_HANDED = "extra_shell_one_handed"; 31 // See IShellTransitions.aidl 32 public static final String KEY_EXTRA_SHELL_SHELL_TRANSITIONS = 33 "extra_shell_shell_transitions"; 34 // See IStartingWindow.aidl 35 public static final String KEY_EXTRA_SHELL_STARTING_WINDOW = 36 "extra_shell_starting_window"; 37 // See IRecentTasks.aidl 38 public static final String KEY_EXTRA_SHELL_RECENT_TASKS = "extra_shell_recent_tasks"; 39 // See IBackAnimation.aidl 40 public static final String KEY_EXTRA_SHELL_BACK_ANIMATION = "extra_shell_back_animation"; 41 // See IDesktopMode.aidl 42 public static final String KEY_EXTRA_SHELL_DESKTOP_MODE = "extra_shell_desktop_mode"; 43 // See IDragAndDrop.aidl 44 public static final String KEY_EXTRA_SHELL_DRAG_AND_DROP = "extra_shell_drag_and_drop"; 45 // See IRecentsAnimationController.aidl 46 public static final String KEY_EXTRA_SHELL_CAN_HAND_OFF_ANIMATION = 47 "extra_shell_can_hand_off_animation"; 48 } 49