Searched refs:SetManagedPref (Results 1 – 1 of 1) sorted by relevance
/external/cronet/components/prefs/ |
D | testing_pref_service.h | 39 void SetManagedPref(const std::string& path, 41 void SetManagedPref(const std::string& path, base::Value value); 42 void SetManagedPref(const std::string& path, base::Value::Dict dict); 43 void SetManagedPref(const std::string& path, base::Value::List list); 172 SetManagedPref(const std::string& path, in SetManagedPref() function 179 SetManagedPref(const std::string& path, base::Value value) { in SetManagedPref() function 180 SetManagedPref(path, base::Value::ToUniquePtrValue(std::move(value))); in SetManagedPref() 185 SetManagedPref(const std::string& path, base::Value::Dict dict) { in SetManagedPref() function 186 SetManagedPref(path, std::make_unique<base::Value>(std::move(dict))); in SetManagedPref() 191 SetManagedPref(const std::string& path, base::Value::List list) { in SetManagedPref() function [all …]
|