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

Commit f0e42518 authored by Lloyd Pique's avatar Lloyd Pique
Browse files

Adds a flag to enable new fullscreen mode request handling

Bug: 296268915
Flag: com.android.window.flags.enable_request_fullscreen_refactor
Test: m
Change-Id: Ifcfd148882d47e93337d4da9fb51834c17b21bf2
parent be28434c
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -177,6 +177,9 @@ public enum DesktopExperienceFlags {
    ENABLE_REJECT_HOME_TRANSITION(
            Flags::enableRejectHomeTransition, true,
            Flags.FLAG_ENABLE_REJECT_HOME_TRANSITION),
    ENABLE_REQUEST_FULLSCREEN_REFACTOR(
            Flags::enableRequestFullscreenRefactor, false,
            Flags.FLAG_ENABLE_REQUEST_FULLSCREEN_REFACTOR),
    ENABLE_RESTART_MENU_FOR_CONNECTED_DISPLAYS(Flags::enableRestartMenuForConnectedDisplays, true,
            Flags.FLAG_ENABLE_RESTART_MENU_FOR_CONNECTED_DISPLAYS),
    ENABLE_RESTRICT_FREEFORM_HIDDEN_SYSTEM_BARS_TO_FILLING_TASKS(
+10 −0
Original line number Diff line number Diff line
@@ -1358,3 +1358,13 @@ flag {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "enable_request_fullscreen_refactor"
    namespace: "lse_desktop_experience"
    description: "Refactors Activity#requestFullscreenMode internal implementation."
    bug: "296268915"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}