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

Commit f1c8cca2 authored by Todd Kennedy's avatar Todd Kennedy Committed by Android (Google) Code Review
Browse files

Merge "idmap2: clang-format"

parents 0ec249bd 134dc1bc
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -98,6 +98,7 @@ Result<std::unique_ptr<std::vector<std::string>>> FindApkFiles(const std::vector
}

std::vector<std::string> PoliciesForPath(const std::string& apk_path) {
  // clang-format off
  static const std::vector<std::pair<std::string, std::string>> values = {
      {"/odm/", kPolicyOdm},
      {"/oem/", kPolicyOem},
@@ -106,6 +107,7 @@ std::vector<std::string> PoliciesForPath(const std::string& apk_path) {
      {"/system_ext/", kPolicySystem},
      {"/vendor/", kPolicyVendor},
  };
  // clang-format on

  std::vector<std::string> fulfilled_policies = {kPolicyPublic};
  for (auto const& pair : values) {