• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 ISplitScreen.aidl
26     public static final String KEY_EXTRA_SHELL_SPLIT_SCREEN = "extra_shell_split_screen";
27     // See IOneHanded.aidl
28     public static final String KEY_EXTRA_SHELL_ONE_HANDED = "extra_shell_one_handed";
29     // See IShellTransitions.aidl
30     public static final String KEY_EXTRA_SHELL_SHELL_TRANSITIONS =
31             "extra_shell_shell_transitions";
32     // See IStartingWindow.aidl
33     public static final String KEY_EXTRA_SHELL_STARTING_WINDOW =
34             "extra_shell_starting_window";
35     // See IRecentTasks.aidl
36     public static final String KEY_EXTRA_SHELL_RECENT_TASKS = "extra_shell_recent_tasks";
37     // See IBackAnimation.aidl
38     public static final String KEY_EXTRA_SHELL_BACK_ANIMATION = "extra_shell_back_animation";
39     // See IFloatingTasks.aidl
40     public static final String KEY_EXTRA_SHELL_FLOATING_TASKS = "extra_shell_floating_tasks";
41     // See IDesktopMode.aidl
42     public static final String KEY_EXTRA_SHELL_DESKTOP_MODE = "extra_shell_desktop_mode";
43 }
44