| Index: chrome/browser/extensions/api/settings_private/settings_private_delegate.cc
|
| diff --git a/chrome/browser/extensions/api/settings_private/settings_private_delegate.cc b/chrome/browser/extensions/api/settings_private/settings_private_delegate.cc
|
| index 13ed8a8ddbe4e54e679d0e4c62bbbd183f8cc532..1311f2f9cee6f06355e9c0cdb81092eda979ca71 100644
|
| --- a/chrome/browser/extensions/api/settings_private/settings_private_delegate.cc
|
| +++ b/chrome/browser/extensions/api/settings_private/settings_private_delegate.cc
|
| @@ -46,7 +46,7 @@ std::unique_ptr<base::Value> SettingsPrivateDelegate::GetAllPrefs() {
|
| const TypedPrefMap& keys = prefs_util_->GetWhitelistedKeys();
|
| for (const auto& it : keys) {
|
| std::unique_ptr<base::Value> pref = GetPref(it.first);
|
| - if (!pref->IsType(base::Value::TYPE_NULL))
|
| + if (!pref->IsType(base::Value::Type::NONE))
|
| prefs->Append(std::move(pref));
|
| }
|
|
|
|
|