| Index: chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js
|
| diff --git a/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js b/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js
|
| index 4d564d6727c15d2710a8342a9131f1b1f5d8add2..c1de6ff299f2e2a0cb9c86bd0483e4733286a9c4 100644
|
| --- a/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js
|
| +++ b/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js
|
| @@ -12,7 +12,6 @@ var prefsEmpty = {
|
| background_sync: '',
|
| camera: '',
|
| cookies: '',
|
| - fullscreen: '',
|
| geolocation: '',
|
| javascript: '',
|
| keygen: '',
|
| @@ -27,7 +26,6 @@ var prefsEmpty = {
|
| background_sync: [],
|
| camera: [],
|
| cookies: [],
|
| - fullscreen: [],
|
| geolocation: [],
|
| javascript: [],
|
| keygen: [],
|
| @@ -126,8 +124,6 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.defaults.camera;
|
| } else if (contentType == settings.ContentSettingsTypes.COOKIES) {
|
| pref = this.prefs_.defaults.cookies;
|
| - } else if (contentType == settings.ContentSettingsTypes.FULLSCREEN) {
|
| - pref = this.prefs_.defaults.fullscreen;
|
| } else if (contentType == settings.ContentSettingsTypes.GEOLOCATION) {
|
| pref = this.prefs_.defaults.geolocation;
|
| } else if (contentType == settings.ContentSettingsTypes.IMAGES) {
|
| @@ -170,8 +166,6 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.exceptions.camera;
|
| else if (contentType == settings.ContentSettingsTypes.COOKIES)
|
| pref = this.prefs_.exceptions.cookies;
|
| - else if (contentType == settings.ContentSettingsTypes.FULLSCREEN)
|
| - pref = this.prefs_.exceptions.fullscreen;
|
| else if (contentType == settings.ContentSettingsTypes.GEOLOCATION)
|
| pref = this.prefs_.exceptions.geolocation;
|
| else if (contentType == settings.ContentSettingsTypes.IMAGES)
|
|
|