Merge "Add floats to the SecureSettings shadow." into oc-dr1-dev

This commit is contained in:
Daniel Nishi
2017-08-09 19:25:35 +00:00
committed by Android (Google) Code Review

View File

@@ -76,6 +76,29 @@ public class ShadowSecureSettings {
return value == null ? defaultValue : value;
}
@Implementation
public static boolean putFloat(ContentResolver resolver, String name, float value) {
mValueMap.put(name, value);
return true;
}
@Implementation
public static boolean putFloatForUser(ContentResolver cr, String name, float value,
float userHandle) {
return putFloat(cr, name, value);
}
@Implementation
public static float getFloatForUser(ContentResolver cr, String name, float def, int userHandle) {
return getFloat(cr, name, def);
}
@Implementation
public static float getFloat(ContentResolver resolver, String name, float defaultValue) {
Float value = (Float) mValueMap.get(name);
return value == null ? defaultValue : value;
}
public static void clear() {
mValueMap.clear();
}