summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/java/com/android/internal/logging/MetricsLogger.java12
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) {