| Index: components/content_settings/core/browser/content_settings_policy_provider.cc
|
| diff --git a/components/content_settings/core/browser/content_settings_policy_provider.cc b/components/content_settings/core/browser/content_settings_policy_provider.cc
|
| index 78a12a27a916aa1eb40423267b135fc905725751..8a7587ba070bceb627f392fea8141f1c52aef837 100644
|
| --- a/components/content_settings/core/browser/content_settings_policy_provider.cc
|
| +++ b/components/content_settings/core/browser/content_settings_policy_provider.cc
|
| @@ -300,7 +300,7 @@ void PolicyProvider::GetAutoSelectCertificateSettingsFromPreferences(
|
|
|
| std::unique_ptr<base::Value> value = base::JSONReader::Read(
|
| pattern_filter_json, base::JSON_ALLOW_TRAILING_COMMAS);
|
| - if (!value || !value->IsType(base::Value::TYPE_DICTIONARY)) {
|
| + if (!value || !value->IsType(base::Value::Type::DICTIONARY)) {
|
| VLOG(1) << "Ignoring invalid certificate auto select setting. Reason:"
|
| " Invalid JSON object: " << pattern_filter_json;
|
| continue;
|
|
|