Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ebea621 authored by Liran Binyamin's avatar Liran Binyamin
Browse files

Initial entry points for bubbles

Bug: 438484301
Flag: EXEMPT new enum class
Test: EXEMPT new enum class
Change-Id: I623f5ca558daba1aa55b651f35ffb2fcaa957113
parent e001106e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -89,6 +89,7 @@ java_library {

    srcs: [
        "src/com/android/wm/shell/shared/bubbles/BubbleAnythingFlagHelper.java",
        "src/com/android/wm/shell/shared/bubbles/logging/EntryPoint.kt",
    ],
    static_libs: [
        "com_android_wm_shell_flags_lib",
+27 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2025 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.android.wm.shell.shared.bubbles.logging

/** Entry points for creating Bubbles. */
enum class EntryPoint {
    TASKBAR_ICON_MENU,
    LAUNCHER_ICON_MENU,
    ALL_APPS_ICON_MENU,
    HOTSEAT_ICON_MENU,
    TASKBAR_ICON_DRAG,
    ALL_APPS_ICON_DRAG,
}