| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/search_engines/default_search_policy_handler.h" | 5 #include "components/search_engines/default_search_policy_handler.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 if (!prefs->GetString(path, &value)) | 362 if (!prefs->GetString(path, &value)) |
| 363 prefs->SetString(path, value); | 363 prefs->SetString(path, value); |
| 364 } | 364 } |
| 365 | 365 |
| 366 void DefaultSearchPolicyHandler::EnsureListPrefExists( | 366 void DefaultSearchPolicyHandler::EnsureListPrefExists( |
| 367 PrefValueMap* prefs, | 367 PrefValueMap* prefs, |
| 368 const std::string& path) { | 368 const std::string& path) { |
| 369 base::Value* value; | 369 base::Value* value; |
| 370 base::ListValue* list_value; | 370 base::ListValue* list_value; |
| 371 if (!prefs->GetValue(path, &value) || !value->GetAsList(&list_value)) | 371 if (!prefs->GetValue(path, &value) || !value->GetAsList(&list_value)) |
| 372 prefs->SetValue(path, base::WrapUnique(new base::ListValue())); | 372 prefs->SetValue(path, base::MakeUnique<base::ListValue>()); |
| 373 } | 373 } |
| 374 | 374 |
| 375 } // namespace policy | 375 } // namespace policy |
| OLD | NEW |