dumpsys properties: fix indent & quotation am: 5036a0fc07 am: 9510e651ce

Original change: https://googleplex-android-review.googlesource.com/c/platform/vendor/widevine/+/22822564

Change-Id: Ia38b30ce0d5a5df32b4a93601230c52c2d861775
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Robert Shih
2023-04-25 00:25:03 +00:00
committed by Automerger Merge Worker

View File

@@ -204,13 +204,13 @@ void WVDrmFactory::printCdmMetrics(int fd) {
}
void WVDrmFactory::printCdmProperties(int fd) {
dprintf(fd, " - widevine_cdm_properties:\n");
dprintf(fd, "widevine_cdm_properties:\n");
android::sp<wvcdm::WvContentDecryptionModule> cdm(getCDM());
const bool isLevel1 =
cdm->IsSecurityLevelSupported(wvcdm::CdmSecurityLevel::kSecurityLevelL1);
dprintf(fd, " default_security_level: \"%s\"\n", isLevel1 ? "L1" : "L3");
dprintf(fd, " default_security_level: %s\n", isLevel1 ? "L1" : "L3");
const std::map<string, string> cdmProperties = {
{"version_widevine_cdm", wvcdm::QUERY_KEY_WVCDM_VERSION},
@@ -249,7 +249,7 @@ void WVDrmFactory::printCdmProperties(int fd) {
cdm->QueryStatus(wvcdm::RequestedSecurityLevel::kLevelDefault,
property.second, &value);
string outString = stringToHex(value);
dprintf(fd, " %s: \"%s\"\n", property.first.c_str(), outString.c_str());
dprintf(fd, " %s: %s\n", property.first.c_str(), outString.c_str());
value.clear();
}
}