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 f312e67618b1fe8e3722ce67dbbeca7c4113004f..d4fc20de6e9064dae72fba13989517f22c5dd4ab 100644 |
--- a/chrome/browser/ui/webui/options/content_settings_handler.cc |
+++ b/chrome/browser/ui/webui/options/content_settings_handler.cc |
@@ -393,6 +393,8 @@ void ContentSettingsHandler::UpdateHandlersEnabledRadios() { |
void ContentSettingsHandler::UpdateAllExceptionsViewsFromModel() { |
for (int type = CONTENT_SETTINGS_TYPE_DEFAULT + 1; |
type < CONTENT_SETTINGS_NUM_TYPES; ++type) { |
+ if (type == CONTENT_SETTINGS_TYPE_AUTO_SUBMIT_CERTIFICATE) |
+ continue; |
wtc
2011/08/11 18:33:55
Why CONTENT_SETTINGS_TYPE_AUTO_SUBMIT_CERTIFICATE
markusheintz_
2011/08/15 19:09:04
Done.
|
UpdateExceptionsViewFromModel(static_cast<ContentSettingsType>(type)); |
} |
} |