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

Commit 80be5652 authored by Gustav Sennton's avatar Gustav Sennton
Browse files

Add flags for desktop app launches for developer options.

Test: N/A
Bug: 327428659
Bug: 369966334
Flag: EXEMPT (adding a flag for developer options)
Change-Id: I2978e7ea2d5c3b6f99f5e1c09a5f69044e862a8a
parent 80cd1380
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -70,7 +70,11 @@ public enum DesktopModeFlags {
    ENABLE_DESKTOP_WINDOWING_ENTER_TRANSITIONS(Flags::enableDesktopWindowingTransitions, false),
    ENABLE_DESKTOP_WINDOWING_EXIT_TRANSITIONS(Flags::enableDesktopWindowingExitTransitions, false),
    ENABLE_WINDOWING_TRANSITION_HANDLERS_OBSERVERS(
            Flags::enableWindowingTransitionHandlersObservers, false);
            Flags::enableWindowingTransitionHandlersObservers, false),
    ENABLE_DESKTOP_APP_LAUNCH_ALTTAB_TRANSITIONS(
            Flags::enableDesktopAppLaunchAlttabTransitions, false),
    ENABLE_DESKTOP_APP_LAUNCH_TRANSITIONS(
            Flags::enableDesktopAppLaunchTransitions, false);

    private static final String TAG = "DesktopModeFlagsUtil";
    // Function called to obtain aconfig flag value.