Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10313)

Unified Diff: chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js

Issue 2501763003: Remove fullscreen from MD Settings internal lists. (Closed)
Patch Set: Fixed tests. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/webui/settings/site_settings_category_tests.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « chrome/test/data/webui/settings/site_settings_category_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698