diff options
author | Mehdi Alizadeh <mett@google.com> | 2019-06-24 17:36:17 -0700 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2019-06-24 17:36:17 -0700 |
commit | d104ed0a6787e92f61b8e29c9a1327892e38f7d9 (patch) | |
tree | 75d944be3697ba05296412ab058e80c4e440b6db | |
parent | 29cd9068bb05b9b96496e1acc2fa4e40660d5e02 (diff) | |
parent | cdd5808bd083c65ec020d39daf1eb8a8825a4323 (diff) |
Merge "Adds metrics categories for gesture navigation dialogs" into qt-dev
am: cdd5808bd0
Change-Id: Id01df942a1f89096f30b71fb5636b615d4aa8ee3
-rw-r--r-- | core/proto/android/app/settings_enums.proto | 14 | ||||
-rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 14 |
2 files changed, 26 insertions, 2 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 616419143747..c023438eecc2 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -2053,7 +2053,7 @@ enum PageId { // OS: P WIFI_SCANNING_NEEDED_DIALOG = 1373; - // OPEN: Settings > System > Gestures > Swipe up gesture + // OPEN: Settings > System > Gestures > System navigation // CATEGORY: SETTINGS // OS: P SETTINGS_GESTURE_SWIPE_UP = 1374; @@ -2389,4 +2389,16 @@ enum PageId { // CATEGORY: SETTINGS // OS: Q MODULE_LICENSES_DASHBOARD = 1746; + + // OPEN: Settings > System > Gestures > System navigation > Info icon + // CATEGORY: SETTINGS + // OS: Q + // Note: Info icon is visible only when gesture navigation is not available and disabled + SETTINGS_GESTURE_NAV_NOT_AVAILABLE_DLG = 1747; + + // OPEN: Settings > System > Gestures > System navigation > Gear icon + // CATEGORY: SETTINGS + // OS: Q + // Note: Gear icon is shown next to gesture navigation preference and opens sensitivity dialog + SETTINGS_GESTURE_NAV_BACK_SENSITIVITY_DLG = 1748; } diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index c58e92971e4f..5a4892c75d9e 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -5780,7 +5780,7 @@ message MetricsEvent { // OS: P WIFI_SCANNING_NEEDED_DIALOG = 1373; - // OPEN: Settings > System > Gestures > Swipe up gesture + // OPEN: Settings > System > Gestures > System navigation // CATEGORY: SETTINGS // OS: P SETTINGS_GESTURE_SWIPE_UP = 1374; @@ -7402,6 +7402,18 @@ message MetricsEvent { // OS: Q MODULE_LICENSES_DASHBOARD = 1746; + // OPEN: Settings > System > Gestures > System navigation > Info icon + // CATEGORY: SETTINGS + // OS: Q + // Note: Info icon is visible only when gesture navigation is not available and disabled + SETTINGS_GESTURE_NAV_NOT_AVAILABLE_DLG = 1747; + + // OPEN: Settings > System > Gestures > System navigation > Gear icon + // CATEGORY: SETTINGS + // OS: Q + // Note: Gear icon is shown next to gesture navigation preference and opens sensitivity dialog + SETTINGS_GESTURE_NAV_BACK_SENSITIVITY_DLG = 1748; + // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. // END OF AOSP CONSTANTS |