| 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 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ptr_util.h" | 12 #include "base/memory/ptr_util.h" |
| 13 #include "base/strings/string_number_conversions.h" | 13 #include "base/strings/string_number_conversions.h" |
| 14 #include "components/policy/core/browser/policy_error_map.h" | 14 #include "components/policy/core/browser/policy_error_map.h" |
| 15 #include "components/policy/core/common/policy_map.h" | 15 #include "components/policy/core/common/policy_map.h" |
| 16 #include "components/policy/policy_constants.h" | 16 #include "components/policy/policy_constants.h" |
| 17 #include "components/prefs/pref_value_map.h" | 17 #include "components/prefs/pref_value_map.h" |
| 18 #include "components/search_engines/default_search_manager.h" | 18 #include "components/search_engines/default_search_manager.h" |
| 19 #include "components/search_engines/search_engines_pref_names.h" | 19 #include "components/search_engines/search_engines_pref_names.h" |
| 20 #include "components/search_engines/search_terms_data.h" | 20 #include "components/search_engines/search_terms_data.h" |
| 21 #include "components/search_engines/template_url.h" | 21 #include "components/search_engines/template_url.h" |
| 22 #include "grit/components_strings.h" | 22 #include "components/strings/grit/components_strings.h" |
| 23 | 23 |
| 24 namespace policy { | 24 namespace policy { |
| 25 | 25 |
| 26 namespace { | 26 namespace { |
| 27 // Extracts a list from a policy value and adds it to a pref dictionary. | 27 // Extracts a list from a policy value and adds it to a pref dictionary. |
| 28 void SetListInPref(const PolicyMap& policies, | 28 void SetListInPref(const PolicyMap& policies, |
| 29 const char* policy_name, | 29 const char* policy_name, |
| 30 const char* key, | 30 const char* key, |
| 31 base::DictionaryValue* dict) { | 31 base::DictionaryValue* dict) { |
| 32 DCHECK(dict); | 32 DCHECK(dict); |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 void DefaultSearchPolicyHandler::EnsureListPrefExists( | 272 void DefaultSearchPolicyHandler::EnsureListPrefExists( |
| 273 PrefValueMap* prefs, | 273 PrefValueMap* prefs, |
| 274 const std::string& path) { | 274 const std::string& path) { |
| 275 base::Value* value; | 275 base::Value* value; |
| 276 base::ListValue* list_value; | 276 base::ListValue* list_value; |
| 277 if (!prefs->GetValue(path, &value) || !value->GetAsList(&list_value)) | 277 if (!prefs->GetValue(path, &value) || !value->GetAsList(&list_value)) |
| 278 prefs->SetValue(path, base::MakeUnique<base::ListValue>()); | 278 prefs->SetValue(path, base::MakeUnique<base::ListValue>()); |
| 279 } | 279 } |
| 280 | 280 |
| 281 } // namespace policy | 281 } // namespace policy |
| OLD | NEW |