/** Called when the user clicked the notification in the UI. */
 public synchronized void registerClickedByUser(NotificationRecord notification) {
   MetricsLogger.histogram(
       mContext,
       "note_click_longevity",
       (int) (System.currentTimeMillis() - notification.getRankingTimeMs()) / (60 * 1000));
   notification.stats.onClick();
   if (ENABLE_SQLITE_LOG) {
     mSQLiteLog.logClicked(notification);
   }
 }