From 350fa3e8b0c4c2b0f5be4a21d81f6e3bcdaa23a1 Mon Sep 17 00:00:00 2001 From: Erik Wolsheimer Date: Mon, 24 May 2021 17:18:47 -0700 Subject: [PATCH] Describe time base/units on ACTION_VIEW_PERMISSION_USAGE_FOR_PERIOD Bug: 188084977 Test: NA Change-Id: I25aa1d6419cdec8f0a9508948451be9edbffa964 --- core/java/android/content/Intent.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index a436fa48a5f26..7c4720ca3e643 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -2013,12 +2013,12 @@ public class Intent implements Parcelable, Cloneable { * Input: {@link #EXTRA_ATTRIBUTION_TAGS} specifies the attribution tags for the usage entry. *

*

- * Input: {@link #EXTRA_START_TIME} specifies the start time of the period. Both start time and - * end time are needed and start time must be <= end time. + * Input: {@link #EXTRA_START_TIME} specifies the start time of the period (epoch time in + * millis). Both start time and end time are needed and start time must be <= end time. *

*

- * Input: {@link #EXTRA_END_TIME} specifies the end time of the period. Both start time and end - * time are needed and start time must be <= end time. + * Input: {@link #EXTRA_END_TIME} specifies the end time of the period (epoch time in + * millis). Both start time and end time are needed and start time must be <= end time. *

*

* Output: Nothing.