summaryrefslogtreecommitdiff
path: root/media
diff options
context:
space:
mode:
authorJiyong Park <jiyong@google.com>2019-07-29 14:19:53 +0900
committerJiyong Park <jiyong@google.com>2019-07-29 14:19:53 +0900
commitca0db33a545aec424660348fa45e0b0f1fe09b23 (patch)
tree1952671fdd679920bbfe4aae131ef98def1ed90b /media
parented5d5a7bec931314779486a0ced74aa5d1ffd9ba (diff)
downloadav-ca0db33a545aec424660348fa45e0b0f1fe09b23.tar.gz
Put vendor. prefix to ecoservice sysprops
Starting from Q-launching devices, sysprops defined in vendor partition should have vendor. prefix. Bug: 138278883 Test: run VtsTrebleSysProp Change-Id: I1b8874291dda2c977eaa06440f2cd51624338059
Diffstat (limited to 'media')
-rw-r--r--media/eco/include/eco/ECODebug.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/media/eco/include/eco/ECODebug.h b/media/eco/include/eco/ECODebug.h
index 1d0e5e9..ff0e8b5 100644
--- a/media/eco/include/eco/ECODebug.h
+++ b/media/eco/include/eco/ECODebug.h
@@ -26,12 +26,12 @@ namespace android {
namespace media {
namespace eco {
-static const char* kDisableEcoServiceProperty = "media.ecoservice.disable";
-static const char* kDebugLogsLevelProperty = "media.ecoservice.log.level";
-static const char* kDebugLogStats = "media.ecoservice.log.stats";
-static const char* kDebugLogStatsSize = "media.ecoservice.log.stats.size";
-static const char* kDebugLogInfos = "media.ecoservice.log.info";
-static const char* kDebugLogInfosSize = "media.ecoservice.log.info.size";
+static const char* kDisableEcoServiceProperty = "vendor.media.ecoservice.disable";
+static const char* kDebugLogsLevelProperty = "vendor.media.ecoservice.log.level";
+static const char* kDebugLogStats = "vendor.media.ecoservice.log.stats";
+static const char* kDebugLogStatsSize = "vendor.media.ecoservice.log.stats.size";
+static const char* kDebugLogInfos = "vendor.media.ecoservice.log.info";
+static const char* kDebugLogInfosSize = "vendor.media.ecoservice.log.info.size";
// A debug variable that should only be accessed by ECOService through updateLogLevel. It is rare
// that this variable will have race condition. But if so, it is ok as this is just for debugging.