summaryrefslogtreecommitdiff
path: root/core/java
diff options
context:
space:
mode:
authorKenny Guy <kennyguy@google.com>2018-04-05 21:18:38 +0100
committerKenny Guy <kennyguy@google.com>2018-04-11 10:09:03 +0100
commit23991105bd893854820009bc71503b595ea2f2fa (patch)
tree132088223470b476a585cb70fd90cdde5830789a /core/java
parent8b0b733a2b2c9a4081e3352a0ddb7ad11c0e543b (diff)
Add logging for smart replies in notifications.
Log the first time a notification with smart replies is visible. Log each click on a smart reply. Test: atest SystemUITests Bug: 72153458 Change-Id: I6dc498871000dbb9af978567db3d258b20978781
Diffstat (limited to 'core/java')
-rw-r--r--core/java/com/android/internal/statusbar/IStatusBarService.aidl2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/com/android/internal/statusbar/IStatusBarService.aidl b/core/java/com/android/internal/statusbar/IStatusBarService.aidl
index 24f2fbf7f132..2b7221a1eb55 100644
--- a/core/java/com/android/internal/statusbar/IStatusBarService.aidl
+++ b/core/java/com/android/internal/statusbar/IStatusBarService.aidl
@@ -64,6 +64,8 @@ interface IStatusBarService
in NotificationVisibility[] noLongerVisibleKeys);
void onNotificationExpansionChanged(in String key, in boolean userAction, in boolean expanded);
void onNotificationDirectReplied(String key);
+ void onNotificationSmartRepliesAdded(in String key, in int replyCount);
+ void onNotificationSmartReplySent(in String key, in int replyIndex);
void onNotificationSettingsViewed(String key);
void setSystemUiVisibility(int vis, int mask, String cause);