Home | History | Annotate | Download | only in chromeos

Lines Matching full:in_value

47 void CrosSettings::Set(const std::string& path, Value* in_value) {
52 provider->Set(path, in_value);
56 void CrosSettings::SetBoolean(const std::string& path, bool in_value) {
58 Set(path, Value::CreateBooleanValue(in_value));
61 void CrosSettings::SetInteger(const std::string& path, int in_value) {
63 Set(path, Value::CreateIntegerValue(in_value));
66 void CrosSettings::SetDouble(const std::string& path, double in_value) {
68 Set(path, Value::CreateDoubleValue(in_value));
72 const std::string& in_value) {
74 Set(path, Value::CreateStringValue(in_value));