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

Commit aaf474ae authored by Kazuki Takise's avatar Kazuki Takise Committed by Android (Google) Code Review
Browse files

Merge "Add flag to disallow presentation on unfocused host task" into main

parents 685c0528 35cd667d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -241,6 +241,9 @@ public enum DesktopExperienceFlags {
    ENABLE_PIP_PARAMS_UPDATE_NOTIFICATION_BUGFIX(
            Flags::enablePipParamsUpdateNotificationBugfix, false,
            Flags.FLAG_ENABLE_PIP_PARAMS_UPDATE_NOTIFICATION_BUGFIX),
    ENABLE_PRESENTATION_DISALLOWED_ON_UNFOCUSED_HOST_TASK(
            Flags::enablePresentationDisallowedOnUnfocusedHostTask, false,
            Flags.FLAG_ENABLE_PRESENTATION_DISALLOWED_ON_UNFOCUSED_HOST_TASK),
    ENABLE_PRESENTATION_FOR_CONNECTED_DISPLAYS(Flags::enablePresentationForConnectedDisplays, true,
            Flags.FLAG_ENABLE_PRESENTATION_FOR_CONNECTED_DISPLAYS),
    ENABLE_PROJECTED_DISPLAY_DESKTOP_MODE(Flags::enableProjectedDisplayDesktopMode, true,
+10 −0
Original line number Diff line number Diff line
@@ -1230,6 +1230,16 @@ flag {
    }
}

flag {
    name: "enable_presentation_disallowed_on_unfocused_host_task"
    namespace: "lse_desktop_experience"
    description: "Disallows presentations from being shown on their unfocused host tasks."
    bug: "435586251"
    metadata {
        purpose: PURPOSE_BUGFIX
    }
}

flag {
    name: "enable_presentation_for_connected_displays"
    namespace: "lse_desktop_experience"