diff options
| author | 2015-12-11 10:45:56 +0000 | |
|---|---|---|
| committer | 2016-01-07 11:09:17 +0000 | |
| commit | a6d20ccd324c5e2727f1aee445816b6c1951a75a (patch) | |
| tree | 051f1020c14e6173ebe311a159aeb7bd4fd97061 | |
| parent | 3e826effedc89e326114a7abcbdd4ac7b3e125c0 (diff) | |
Create a new Logging constant for Profile Challenge Settings
Change-Id: I282ee30b47432e97545b004ea2ada56f3ecb84fa
| -rw-r--r-- | core/java/com/android/internal/logging/MetricsLogger.java | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/core/java/com/android/internal/logging/MetricsLogger.java b/core/java/com/android/internal/logging/MetricsLogger.java index 4b821abec6fb..40eb375c027b 100644 --- a/core/java/com/android/internal/logging/MetricsLogger.java +++ b/core/java/com/android/internal/logging/MetricsLogger.java @@ -43,19 +43,25 @@ public class MetricsLogger implements MetricsConstants { * Logged when the user docks a window from recents by longpressing a task and dragging it to * the dock area. */ - public static final int ACTION_WINDOW_DOCK_DRAG_DROP = 265; + public static final int ACTION_WINDOW_DOCK_DRAG_DROP = 268; /** * Logged when the user docks a fullscreen window by long pressing recents which also opens * recents on the lower/right side. */ - public static final int ACTION_WINDOW_DOCK_LONGPRESS = 266; + public static final int ACTION_WINDOW_DOCK_LONGPRESS = 269; /** * Logged when the user docks a window by dragging from the navbar which also opens recents on * the lower/right side. */ - public static final int ACTION_WINDOW_DOCK_SWIPE = 267; + public static final int ACTION_WINDOW_DOCK_SWIPE = 270; + + /** + * Logged when the user launches a profile-specific app and we intercept it with the confirm + * credentials UI. + */ + public static final int PROFILE_CHALLENGE = 271; public static void visible(Context context, int category) throws IllegalArgumentException { if (Build.IS_DEBUGGABLE && category == VIEW_UNKNOWN) { |