| 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 5b158c70647a5af6161a6b8248b52184927a42d3..00cc28a83b2d75d54ce3d6f2658529fed801ff32 100644
|
| --- a/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/content_settings_handler.cc
|
| @@ -63,6 +63,7 @@ const ContentSettingsTypeNameEntry kContentSettingsTypeGroupNames[] = {
|
| {CONTENT_SETTINGS_TYPE_NOTIFICATIONS, "notifications"},
|
| {CONTENT_SETTINGS_TYPE_INTENTS, "intents"},
|
| {CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE, "auto-select-certificate"},
|
| + {CONTENT_SETTINGS_TYPE_FULLSCREEN, "fullscreen"},
|
| };
|
| COMPILE_ASSERT(arraysize(kContentSettingsTypeGroupNames) ==
|
| CONTENT_SETTINGS_NUM_TYPES,
|
| @@ -416,6 +417,9 @@ void ContentSettingsHandler::UpdateAllExceptionsViewsFromModel() {
|
| // for this content type and we skip it here.
|
| if (type == CONTENT_SETTINGS_TYPE_AUTO_SELECT_CERTIFICATE)
|
| continue;
|
| + // TODO(koz): Implement fullscreen content settings UI.
|
| + if (type == CONTENT_SETTINGS_TYPE_FULLSCREEN)
|
| + continue;
|
| UpdateExceptionsViewFromModel(static_cast<ContentSettingsType>(type));
|
| }
|
| }
|
|
|