summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Joshua Duong <joshuaduong@google.com> 2020-02-10 23:31:01 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2020-02-10 23:31:01 +0000
commit54701eab76d129f78d8a30b352ff08e79ac024da (patch)
tree8f0da40cfe12b3f3891ddac41f74928c9e71e600
parent940853b36f9c4393080c8a4f63c5e058567068ba (diff)
parent2ebefbd0dcfb2aa0d0b5dd1e165e6b4a0728b80d (diff)
Merge "[adbwifi] Add Settings metrics for adb wireless." into stage-aosp-master
-rw-r--r--core/proto/android/app/settings_enums.proto27
1 files changed, 27 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto
index 2cedd847e97d..1ba85e9a70c4 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;
}