diff options
| author | 2019-01-15 00:09:33 +0000 | |
|---|---|---|
| committer | 2019-01-15 00:09:33 +0000 | |
| commit | 564c97ee981cdee5a40f1994c699680bd1c84781 (patch) | |
| tree | 1b9bef8f07c7de3cbbfe5da33635e9809d984510 | |
| parent | 68de214dc20be46ba29771cb82e843d6ffccb9eb (diff) | |
| parent | 6513d9d646c486f651946d02ff8f2d89e42e02b1 (diff) | |
Merge "Add Metrics for Tap & Pay Default app settings"
| -rw-r--r-- | core/proto/android/app/settings_enums.proto | 6 | ||||
| -rw-r--r-- | proto/src/metrics_constants/metrics_constants.proto | 7 |
2 files changed, 13 insertions, 0 deletions
diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index 3e1c5a334184..2f2f62392157 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -29,6 +29,12 @@ enum Action { // ACTION: Settings > Any preference is changed ACTION_SETTINGS_PREFERENCE_CHANGE = 853; + + // ACTION: Tap & Pay -> Default Application Setting -> Use Forground + ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622; + + // ACTION: Tap & Pay -> Default Application Setting -> Use Default + ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623; } /** diff --git a/proto/src/metrics_constants/metrics_constants.proto b/proto/src/metrics_constants/metrics_constants.proto index 5b45a08af9b4..44edb568573c 100644 --- a/proto/src/metrics_constants/metrics_constants.proto +++ b/proto/src/metrics_constants/metrics_constants.proto @@ -6794,6 +6794,13 @@ message MetricsEvent { // OS: Q NOTIFICATION_BLOCKING_HELPER = 1621; + // ACTION: Tap & Pay -> Default Application Setting -> Use Forground + // OS: Q + ACTION_NFC_PAYMENT_FOREGROUND_SETTING = 1622; + + // ACTION: Tap & Pay -> Default Application Setting -> Use Default + // OS: Q + ACTION_NFC_PAYMENT_ALWAYS_SETTING = 1623; // ---- End Q Constants, all Q constants go above this line ---- // Add new aosp constants above this line. |