From 5bc3c58134db6bf88ebdf5e3c29176b0f825c001 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 Exempt-From-Owner-Approval: Cherry-pick Merged-In: Ib18cefda42fd778f5868ba63007b0b18e83e2c4d Change-Id: Ib18cefda42fd778f5868ba63007b0b18e83e2c4d --- core/proto/android/app/settings_enums.proto | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 2cedd847e97d2..1ba85e9a70c47 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -688,6 +688,16 @@ enum Action { // ACTION: Settings > Initialize Search bar > Verify Slice > Other exception ACTION_VERIFY_SLICE_OTHER_EXCEPTION = 1727; + + // 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; } /** @@ -2416,4 +2426,21 @@ enum PageId { // CATEGORY: SETTINGS // OS: R SETTINGS_PLATFORM_COMPAT_DASHBOARD = 1805; + + // 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; }