Index: chrome/browser/ui/webui/options/content_settings_handler.cc |
diff --git a/chrome/browser/ui/webui/options/content_settings_handler.cc b/chrome/browser/ui/webui/options/content_settings_handler.cc |
index 02d485d0b262b309d07f731008922b0252506ce8..4b80c94865573c31d8696f464fca094acaa7b2ea 100644 |
--- a/chrome/browser/ui/webui/options/content_settings_handler.cc |
+++ b/chrome/browser/ui/webui/options/content_settings_handler.cc |
@@ -61,7 +61,11 @@ const ContentSettingsTypeNameEntry kContentSettingsTypeGroupNames[] = { |
{CONTENT_SETTINGS_TYPE_GEOLOCATION, "location"}, |
{CONTENT_SETTINGS_TYPE_NOTIFICATIONS, "notifications"}, |
{CONTENT_SETTINGS_TYPE_INTENTS, "intents"}, |
+ {CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE, "auto-select-certificate"}, |
}; |
+COMPILE_ASSERT(arraysize(kContentSettingsTypeGroupNames) == |
+ CONTENT_SETTINGS_NUM_TYPES, |
+ MISSING_CONTENT_SETTINGS_TYPE); |
ContentSettingsType ContentSettingsTypeFromGroupName(const std::string& name) { |
for (size_t i = 0; i < arraysize(kContentSettingsTypeGroupNames); ++i) { |