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

Commit dd98e78b authored by Liran Binyamin's avatar Liran Binyamin Committed by Android (Google) Code Review
Browse files

Merge "Initial entry points for bubbles" into main

parents 037832e9 4ebea621
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,
}