From 8068c2c8ea69284399667895868242ee7c4cac8f Mon Sep 17 00:00:00 2001 From: shafik Date: Mon, 6 Jan 2020 14:26:55 +0000 Subject: [PATCH] UI for MANAGE_EXTERNAL_STORAGE: Add settings enums Adds settings enums for special app access metrics. Test: builds Bug: 146425146 Change-Id: I9308f01cea3cd3eae78892a5f30c925b4ea83593 --- core/proto/android/app/settings_enums.proto | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/core/proto/android/app/settings_enums.proto b/core/proto/android/app/settings_enums.proto index d5a3b5e91151a..b83b31c1303a3 100644 --- a/core/proto/android/app/settings_enums.proto +++ b/core/proto/android/app/settings_enums.proto @@ -702,6 +702,12 @@ enum Action { // CATEGORY: SETTINGS // OS: R ACTION_DASHBOARD_VISIBLE_TIME = 1729; + + // ACTION: Allow "Access all files" for an app + APP_SPECIAL_PERMISSION_MANAGE_EXT_STRG_ALLOW = 1730; + + // ACTION: Deny "Access all files" for an app + APP_SPECIAL_PERMISSION_MANAGE_EXT_STRG_DENY = 1731; } /** @@ -2542,4 +2548,9 @@ enum PageId { // OS: R FUELGAUGE_BATTERY_SHARE = 1821; + // OPEN: Settings -> Apps & Notifications -> Special App Access + // CATEGORY: SETTINGS + // OS: R + MANAGE_EXTERNAL_STORAGE = 1822; + }