| Index: chrome/browser/resources/options/content_settings_exceptions_area.js
|
| diff --git a/chrome/browser/resources/options/content_settings_exceptions_area.js b/chrome/browser/resources/options/content_settings_exceptions_area.js
|
| index 4f544b22aa1a300788ff2ef4991016912bedd97b..7adde6862095c8c49f505dc3c223b8d19a0ea14e 100644
|
| --- a/chrome/browser/resources/options/content_settings_exceptions_area.js
|
| +++ b/chrome/browser/resources/options/content_settings_exceptions_area.js
|
| @@ -82,10 +82,12 @@ cr.define('options.contentSettings', function() {
|
| select.appendChild(optionSession);
|
| }
|
|
|
| - var optionBlock = cr.doc.createElement('option');
|
| - optionBlock.textContent = templateData.blockException;
|
| - optionBlock.value = 'block';
|
| - select.appendChild(optionBlock);
|
| + if (this.contentType != 'fullscreen') {
|
| + var optionBlock = cr.doc.createElement('option');
|
| + optionBlock.textContent = templateData.blockException;
|
| + optionBlock.value = 'block';
|
| + select.appendChild(optionBlock);
|
| + }
|
|
|
| this.contentElement.appendChild(select);
|
| select.className = 'exception-setting';
|
| @@ -428,7 +430,8 @@ cr.define('options.contentSettings', function() {
|
| isEditable: function() {
|
| // Editing notifications and geolocation is disabled for now.
|
| return !(this.contentType == 'notifications' ||
|
| - this.contentType == 'location');
|
| + this.contentType == 'location' ||
|
| + this.contentType == 'fullscreen');
|
| },
|
|
|
| /**
|
|
|