| Index: components/content_settings/core/browser/content_settings_registry_unittest.cc
 | 
| diff --git a/components/content_settings/core/browser/content_settings_registry_unittest.cc b/components/content_settings/core/browser/content_settings_registry_unittest.cc
 | 
| index 153dc5bbc39726e366dca8368666950e6550a7e4..50d4b6c71a96503a4dd47a036cf6c70b09f9da00 100644
 | 
| --- a/components/content_settings/core/browser/content_settings_registry_unittest.cc
 | 
| +++ b/components/content_settings/core/browser/content_settings_registry_unittest.cc
 | 
| @@ -44,6 +44,12 @@ TEST_F(ContentSettingsRegistryTest, Properties) {
 | 
|    expected_whitelist.push_back("chrome-devtools");
 | 
|    EXPECT_EQ(expected_whitelist, info->whitelisted_schemes());
 | 
|  
 | 
| +  // Check the other properties are populated correctly.
 | 
| +  EXPECT_TRUE(info->IsSettingValid(CONTENT_SETTING_SESSION_ONLY));
 | 
| +  EXPECT_FALSE(info->IsSettingValid(CONTENT_SETTING_ASK));
 | 
| +  EXPECT_EQ(ContentSettingsInfo::INHERIT_IN_INCOGNITO,
 | 
| +            info->incognito_behavior());
 | 
| +
 | 
|    // Check the WebsiteSettingsInfo is populated correctly.
 | 
|    const WebsiteSettingsInfo* website_settings_info =
 | 
|        info->website_settings_info();
 | 
| 
 |