| Index: chrome/browser/content_settings/host_content_settings_map_unittest.cc
|
| diff --git a/chrome/browser/content_settings/host_content_settings_map_unittest.cc b/chrome/browser/content_settings/host_content_settings_map_unittest.cc
|
| index 6247af2c70f670cdbefaf1f65d6bedda1f9a1c8a..0cf740f5dd65e909183b0321dd3abb95795cd870 100644
|
| --- a/chrome/browser/content_settings/host_content_settings_map_unittest.cc
|
| +++ b/chrome/browser/content_settings/host_content_settings_map_unittest.cc
|
| @@ -720,8 +720,8 @@ TEST_F(HostContentSettingsMapTest, CanonicalizeExceptionsUnicodeAndPunycode) {
|
| // Initialize the content map.
|
| profile.GetHostContentSettingsMap();
|
|
|
| - const base::DictionaryValue* content_setting_prefs =
|
| - profile.GetPrefs()->GetDictionary(
|
| + const base::DictionaryValue& content_setting_prefs =
|
| + *profile.GetPrefs()->GetDictionary(
|
| prefs::kContentSettingsImagesPatternPairs);
|
| std::string prefs_as_json;
|
| base::JSONWriter::Write(content_setting_prefs, &prefs_as_json);
|
|
|