Revert "Revert "Settings: Enable HAL HDR+ by default""

This reverts commit 781e762c2c.

Also updated the V2 version, which was not in the original revert CL.

Test: CTS
Bug: 67590972
Change-Id: I3c1459e432df10d075072e531ef6fc65e3ae4f24
This commit is contained in:
Chien-Yu Chen
2017-10-10 11:36:57 -07:00
committed by Daniel Finchelstein
parent d50363b496
commit e96571d106
2 changed files with 2 additions and 2 deletions

View File

@@ -95,6 +95,6 @@ public class CameraHalHdrPlusPreferenceControllerV2 extends
}
private boolean isHalHdrplusEnabled() {
return SystemProperties.getBoolean(PROPERTY_CAMERA_HAL_HDRPLUS, false /* default */);
return SystemProperties.getBoolean(PROPERTY_CAMERA_HAL_HDRPLUS, true /* default */);
}
}

View File

@@ -104,6 +104,6 @@ public class CameraHalHdrplusPreferenceController extends AbstractPreferenceCont
}
private boolean isHalHdrplusEnabled() {
return SystemProperties.getBoolean(PROPERTY_CAMERA_HAL_HDRPLUS, false);
return SystemProperties.getBoolean(PROPERTY_CAMERA_HAL_HDRPLUS, true);
}
}