libexternal: change action safe property to persist

It is more probable that end user always use same TV to connect.
Hence make the action safe property persist, so that it is
persistent across reboot
Also, change property to sys. from hw. so that hwc can write

Change-Id: I5a77156012d121e28d1adbadb9162fcdf7ca3edd
CRs-fixed: 472431
diff --git a/libhwcomposer/hwc_utils.cpp b/libhwcomposer/hwc_utils.cpp
index a578bb0..d9eea9b 100644
--- a/libhwcomposer/hwc_utils.cpp
+++ b/libhwcomposer/hwc_utils.cpp
@@ -240,9 +240,9 @@
     char value[PROPERTY_VALUE_MAX];
 
     // Apply action safe parameters
-    property_get("hw.actionsafe.width", value, "0");
+    property_get("persist.sys.actionsafe.width", value, "0");
     int asWidthRatio = atoi(value);
-    property_get("hw.actionsafe.height", value, "0");
+    property_get("persist.sys.actionsafe.height", value, "0");
     int asHeightRatio = atoi(value);
     // based on the action safe ratio, get the Action safe rectangle
     asW = fbWidth * (1.0f -  asWidthRatio / 100.0f);