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

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

Issue 2021343003: MD Site Settings: Add five new top level categories (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback and add icons Created 4 years, 6 months 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
Index: chrome/test/data/webui/settings/site_list_tests.js
diff --git a/chrome/test/data/webui/settings/site_list_tests.js b/chrome/test/data/webui/settings/site_list_tests.js
index a2b8c2d74b5afe064bf92c88a4758c5c0b69bcd5..79fd14880e979e9580a2ace8983e77de540179c5 100644
--- a/chrome/test/data/webui/settings/site_list_tests.js
+++ b/chrome/test/data/webui/settings/site_list_tests.js
@@ -26,7 +26,9 @@ cr.define('site_list', function() {
*/
var prefs = {
exceptions: {
- media_stream_camera: [],
+ auto_downloads: [],
+ background_sync: [],
+ camera: [],
cookies: [],
fullscreen: [],
geolocation: [
@@ -57,9 +59,12 @@ cr.define('site_list', function() {
],
images: [],
javascript: [],
- media_stream_mic: [],
+ keygen: [],
+ mic: [],
notifications: [],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};
@@ -92,7 +97,9 @@ cr.define('site_list', function() {
*/
var prefsMixedOriginAndPattern = {
exceptions: {
- media_stream_camera: [],
+ auto_downloads: [],
+ background_sync: [],
+ camera: [],
cookies: [],
fullscreen: [],
geolocation: [
@@ -103,6 +110,7 @@ cr.define('site_list', function() {
source: 'preference',
},
],
+ images: [],
javascript: [
{
origin: 'https://[*.]foo.com',
@@ -111,10 +119,12 @@ cr.define('site_list', function() {
source: 'preference',
},
],
- images: [],
- media_stream_mic: [],
+ keygen: [],
+ mic: [],
notifications: [],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};
@@ -125,7 +135,9 @@ cr.define('site_list', function() {
*/
var prefsVarious = {
exceptions: {
- media_stream_camera: [],
+ auto_downloads: [],
+ background_sync: [],
+ camera: [],
cookies: [],
fullscreen: [],
geolocation: [
@@ -144,7 +156,8 @@ cr.define('site_list', function() {
],
images: [],
javascript: [],
- media_stream_mic: [],
+ keygen: [],
+ mic: [],
notifications: [
{
embeddingOrigin: 'https://google.com',
@@ -165,7 +178,9 @@ cr.define('site_list', function() {
source: 'preference',
},
],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};

Powered by Google App Engine
This is Rietveld 408576698