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

Commit e32d6120 authored by Mady Mellor's avatar Mady Mellor Committed by Android (Google) Code Review
Browse files

Merge "Add a helper class for bubble anything flags" into main

parents a53292bb 1d52b115
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ android_library {
    static_libs: [
        "androidx.core_core-animation",
        "androidx.dynamicanimation_dynamicanimation",
        "com_android_wm_shell_flags_lib",
        "jsr330",
    ],
    kotlincflags: ["-Xjvm-default=all"],
+48 −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;

import com.android.wm.shell.Flags;

/**
 * Bubble anything has some dependent flags, this class simplifies the checks.
 * (TODO: b/389737359 - remove this when the feature is launched).
 */
public class BubbleAnythingFlagHelper {

    private BubbleAnythingFlagHelper() {}

    /** Whether creating any bubble or the overall bubble anything feature is enabled. */
    public static boolean enableCreateAnyBubble() {
        return enableBubbleAnything() || Flags.enableCreateAnyBubble();
    }

    /**
     * Whether creating any bubble and transforming to fullscreen, or the overall bubble anything
     * feature is enabled.
     */
    public static boolean enableBubbleToFullscreen() {
        return enableBubbleAnything()
                || (Flags.enableBubbleToFullscreen()
                && Flags.enableCreateAnyBubble());
    }

    /** Whether the overall bubble anything feature is enabled. */
    public static boolean enableBubbleAnything() {
        return Flags.enableBubbleAnything();
    }
}