Merge "Display the HD icon in the Call Log" am: 3ef58c56b6

am: 50fb8ff6da

Change-Id: Idffacab6edf8bdaf7fb133560f5e9d50cc2c28de
This commit is contained in:
Qi Wang
2017-11-06 19:49:46 +00:00
committed by android-build-merger

View File

@@ -1631,6 +1631,13 @@ public class CarrierConfigManager {
public static final String KEY_FEATURE_ACCESS_CODES_STRING_ARRAY =
"feature_access_codes_string_array";
/**
* Determines if the carrier wants to identify high definition calls in the call log.
* @hide
*/
public static final String KEY_IDENTIFY_HIGH_DEFINITION_CALLS_IN_CALL_LOG_BOOL =
"identify_high_definition_calls_in_call_log_bool";
/** The default value for every variable. */
private final static PersistableBundle sDefaults;
@@ -1905,6 +1912,7 @@ public class CarrierConfigManager {
sDefaults.putBoolean(KEY_SHOW_IMS_REGISTRATION_STATUS_BOOL, false);
sDefaults.putBoolean(KEY_DISABLE_CHARGE_INDICATION_BOOL, false);
sDefaults.putStringArray(KEY_FEATURE_ACCESS_CODES_STRING_ARRAY, null);
sDefaults.putBoolean(KEY_IDENTIFY_HIGH_DEFINITION_CALLS_IN_CALL_LOG_BOOL, false);
}
/**