diff options
| author | 2018-12-03 12:15:28 -0800 | |
|---|---|---|
| committer | 2018-12-03 12:15:28 -0800 | |
| commit | 917743d3abb7550360f5a7a5a15664a4f9603d6c (patch) | |
| tree | 962ae20ff78eee8e46272133fa1e8d1d50b70f78 | |
| parent | 7208efc83baa70999d2ab264c289b0a38d716ed5 (diff) | |
Add comments about location access proto fields
Test: Built
Change-Id: Iba9ab099193d2487e471a36b4c796d927636b7e4
| -rw-r--r-- | core/proto/android/providers/settings/secure.proto | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/proto/android/providers/settings/secure.proto b/core/proto/android/providers/settings/secure.proto index b465fb4f7eba..0e052fe8d4b1 100644 --- a/core/proto/android/providers/settings/secure.proto +++ b/core/proto/android/providers/settings/secure.proto @@ -234,10 +234,14 @@ message SecureSettingsProto { } optional Location location = 31; + // How frequently will the user be reminded about location permission grants message LocationAccessCheck { option (android.msg_privacy).dest = DEST_EXPLICIT; + // Time in between periodic checks optional SettingProto interval_millis = 1 [ (android.privacy).dest = DEST_AUTOMATIC ]; + + // Time in between the user granting a location permission and a check optional SettingProto delay_millis = 2 [ (android.privacy).dest = DEST_AUTOMATIC ]; } optional LocationAccessCheck location_access_check = 73; |