| Index: chrome/browser/content_settings/content_settings_pref_provider.cc
|
| diff --git a/chrome/browser/content_settings/content_settings_pref_provider.cc b/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| index 1a684868c985b645a2d1167593af7e169ed27202..aa4eb6968d0218396a30ed9e94bf0287080b2e8c 100644
|
| --- a/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| +++ b/chrome/browser/content_settings/content_settings_pref_provider.cc
|
| @@ -46,6 +46,7 @@ const char* kResourceTypeNames[] = {
|
| NULL,
|
| NULL,
|
| NULL,
|
| + NULL,
|
| };
|
| COMPILE_ASSERT(arraysize(kResourceTypeNames) == CONTENT_SETTINGS_NUM_TYPES,
|
| resource_type_names_incorrect_size);
|
| @@ -61,6 +62,7 @@ const ContentSetting kDefaultSettings[] = {
|
| CONTENT_SETTING_ASK, // CONTENT_SETTINGS_TYPE_NOTIFICATIONS
|
| CONTENT_SETTING_ASK, // CONTENT_SETTINGS_TYPE_INTENTS
|
| CONTENT_SETTING_ASK, // CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE
|
| + CONTENT_SETTING_ALLOW, // CONTENT_SETTINGS_TYPE_COOKIES_SESSION_ONLY
|
| };
|
| COMPILE_ASSERT(arraysize(kDefaultSettings) == CONTENT_SETTINGS_NUM_TYPES,
|
| default_settings_incorrect_size);
|
| @@ -75,7 +77,8 @@ const char* kTypeNames[] = {
|
| "geolocation",
|
| "notifications",
|
| "intents",
|
| - "auto-select-certificate"
|
| + "auto-select-certificate",
|
| + "cookies-session-only",
|
| };
|
| COMPILE_ASSERT(arraysize(kTypeNames) == CONTENT_SETTINGS_NUM_TYPES,
|
| type_names_incorrect_size);
|
|
|