Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d8b1249 authored by Anna Bauza's avatar Anna Bauza
Browse files

Add flags for caching Profiles data

Flags for adding caching methods:
- getProfileIds
- getProfiles
- getProfileType

Flag: android.multiuser.cache_profile_ids
Flag: android.multiuser.cache_profile_type
Flag: android.multiuser.cache_profiles
Test: N/A
Bug: 350421409
Bug: 350417403
Bug: 350419395
Change-Id: I8204cae0821ff94fb33bc0972acd0f4012c6e5ce
parent 184f9fa4
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
@@ -207,6 +207,36 @@ flag {
  }
}

flag {
    name: "cache_profile_ids"
    namespace: "multiuser"
    description: "Cache getProfileIds to avoid unnecessary binder calls"
    bug: "350421409"
    metadata {
        purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "cache_profile_type"
    namespace: "multiuser"
    description: "Cache getProfileType to avoid unnecessary binder calls"
    bug: "350417403"
    metadata {
        purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "cache_profiles"
    namespace: "multiuser"
    description: "Cache getProfiles to avoid unnecessary binder calls"
    bug: "350419395"
    metadata {
        purpose: PURPOSE_BUGFIX
  }
}

flag {
    name: "fix_disabling_of_mu_toggle_when_restriction_applied"
    namespace: "multiuser"