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 df613dea4d4b78fd99b0c57bc213c6c385090380..76ca6450ad9f46a35631f4920a1d4c01d3b23818 100644 |
--- a/chrome/browser/content_settings/content_settings_pref_provider.cc |
+++ b/chrome/browser/content_settings/content_settings_pref_provider.cc |
@@ -47,6 +47,7 @@ const char* kResourceTypeNames[] = { |
NULL, |
NULL, |
NULL, |
+ NULL, // Not used for Fullscreens. |
}; |
COMPILE_ASSERT(arraysize(kResourceTypeNames) == CONTENT_SETTINGS_NUM_TYPES, |
resource_type_names_incorrect_size); |
@@ -62,6 +63,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_ASK, // CONTENT_SETTINGS_TYPE_FULLSCREEN |
}; |
COMPILE_ASSERT(arraysize(kDefaultSettings) == CONTENT_SETTINGS_NUM_TYPES, |
default_settings_incorrect_size); |
@@ -76,7 +78,8 @@ const char* kTypeNames[] = { |
"geolocation", |
"notifications", |
"intents", |
- "auto-select-certificate" |
+ "auto-select-certificate", |
+ "fullscreen", |
}; |
COMPILE_ASSERT(arraysize(kTypeNames) == CONTENT_SETTINGS_NUM_TYPES, |
type_names_incorrect_size); |