From 5e931c7e2ecd0de3fb74a095930d8b835595b774 Mon Sep 17 00:00:00 2001 From: Joshua Duong Date: Wed, 22 Jan 2020 12:27:54 -0800 Subject: [PATCH] [adbwifi] Add Settings metrics for adb wireless. Bug: 111434128, 119492574 Test: make Change-Id: Ib18cefda42fd778f5868ba63007b0b18e83e2c4d --- core/proto/android/app/settings_enums.proto | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 4625418c1581e..53aa2bbd57ea0 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -714,6 +714,16 @@ enum Action { // ACTION: Battery feature runtime event ACTION_BATTERY_OPTION_RUNTIME_EVENT = 1733; + + // ACTION: Settings > Developer Options > Toggle on Wireless debugging + // CATEGORY: SETTINGS + // OS: R + ACTION_ADB_WIRELESS_ON = 1734; + + // ACTION: Settings > Developer Options > Toggle off Wireless debugging + // CATEGORY: SETTINGS + // OS: R + ACTION_ADB_WIRELESS_OFF = 1735; } /** @@ -2591,4 +2601,20 @@ enum PageId { // OPEN: Settings > Notifications > (app or conversations) > conversation NOTIFICATION_CONVERSATION_SETTINGS = 1830; + // OPEN: Settings > Developer Options > Wireless debugging + // CATEGORY: SETTINGS + // OS: R + SETTINGS_ADB_WIRELESS = 1831; + + // OPEN: Settings > Developer Options > Wireless debugging + // > Pair device with pairing code > Pairing code dialog + // CATEGORY: SETTINGS + // OS: R + ADB_WIRELESS_DEVICE_PAIRING_DIALOG = 1832; + + // OPEN: Settings > Developer Options > Wireless debugging + // > Pair device with QR code > Scan QR code > Pairing device dialog + // CATEGORY: SETTINGS + // OS: R + ADB_WIRELESS_DEVICE_QR_PAIRING_DIALOG = 1833; }