Index: chrome/browser/content_settings/content_settings_utils.cc |
diff --git a/chrome/browser/content_settings/content_settings_utils.cc b/chrome/browser/content_settings/content_settings_utils.cc |
index ab189e1c180fc7bf8b74ba8d3bde04f73dbaf581..1c10b953877a8142bc512bd147aa23908a0d7e12 100644 |
--- a/chrome/browser/content_settings/content_settings_utils.cc |
+++ b/chrome/browser/content_settings/content_settings_utils.cc |
@@ -26,6 +26,7 @@ const bool kSupportsResourceIdentifier[CONTENT_SETTINGS_NUM_TYPES] = { |
false, // CONTENT_SETTINGS_TYPE_NOTIFICATIONS |
false, // CONTENT_SETTINGS_TYPE_INTENTS |
false, // CONTENT_SETTINGS_TYPE_AUTO_SUBMIT_CERTIFICATE |
+ false, // CONTENT_SETTINGS_TYPE_FULLSCREEN |
}; |
COMPILE_ASSERT(arraysize(kSupportsResourceIdentifier) == |
CONTENT_SETTINGS_NUM_TYPES, |
@@ -43,6 +44,7 @@ const char* kResourceTypeNames[] = { |
NULL, |
NULL, |
NULL, |
+ NULL, |
}; |
COMPILE_ASSERT(arraysize(kResourceTypeNames) == CONTENT_SETTINGS_NUM_TYPES, |
resource_type_names_incorrect_size); |
@@ -57,7 +59,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); |