Add DOCK_SETUP_PROMPTED enum value to Settings.

A new dock setup state to indicate that dock setup has been prompted but
not yet started.

Bug: 259586571
Test: manually
Change-Id: I38a17f5e4b03693c7b45e7ed8987af1f37192b16
This commit is contained in:
Will Leshner
2022-12-05 11:46:48 -08:00
parent 1cc6b20282
commit 8c423bc307

View File

@@ -9224,6 +9224,14 @@ public final class Settings {
*/
public static final int DOCK_SETUP_PAUSED = 2;
/**
* Indicates that the user has been prompted to start dock setup.
* One of the possible states for {@link #DOCK_SETUP_STATE}.
*
* @hide
*/
public static final int DOCK_SETUP_PROMPTED = 3;
/**
* Indicates that the user has completed dock setup.
* One of the possible states for {@link #DOCK_SETUP_STATE}.
@@ -9238,6 +9246,7 @@ public final class Settings {
DOCK_SETUP_NOT_STARTED,
DOCK_SETUP_STARTED,
DOCK_SETUP_PAUSED,
DOCK_SETUP_PROMPTED,
DOCK_SETUP_COMPLETED
})
public @interface DockSetupState {