| Index: chrome/browser/chromeos/policy/policy_cert_service_factory.cc
|
| diff --git a/chrome/browser/chromeos/policy/policy_cert_service_factory.cc b/chrome/browser/chromeos/policy/policy_cert_service_factory.cc
|
| index 3d8aeb829b9495528b8ed9ce6b46a1c5871547ac..246c8ea99aab271de8e4476d0d6695e258bfffb9 100644
|
| --- a/chrome/browser/chromeos/policy/policy_cert_service_factory.cc
|
| +++ b/chrome/browser/chromeos/policy/policy_cert_service_factory.cc
|
| @@ -60,13 +60,13 @@ void PolicyCertServiceFactory::ClearUsedPolicyCertificates(
|
| const std::string& user_id) {
|
| ListPrefUpdate update(g_browser_process->local_state(),
|
| prefs::kUsedPolicyCertificates);
|
| - update->Remove(base::StringValue(user_id), NULL);
|
| + update->Remove(base::Value(user_id), NULL);
|
| }
|
|
|
| // static
|
| bool PolicyCertServiceFactory::UsedPolicyCertificates(
|
| const std::string& user_id) {
|
| - base::StringValue value(user_id);
|
| + base::Value value(user_id);
|
| const base::ListValue* list =
|
| g_browser_process->local_state()->GetList(prefs::kUsedPolicyCertificates);
|
| if (!list) {
|
|
|