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

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: Unit test fix Created 4 years, 7 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..df953e4dc0ccf21de6c8378b14a671c95267ceb7 100644
--- a/chrome/test/data/webui/settings/site_list_tests.js
+++ b/chrome/test/data/webui/settings/site_list_tests.js
@@ -26,6 +26,8 @@ cr.define('site_list', function() {
*/
var prefs = {
exceptions: {
+ auto_downloads: [],
+ background_sync: [],
media_stream_camera: [],
michaelpg 2016/06/02 12:58:31 nit x3: move media_stream_camera to after keygen
Finnur 2016/06/02 17:31:36 Actually, the media_stream_ prefix is a remnant of
cookies: [],
fullscreen: [],
@@ -57,9 +59,12 @@ cr.define('site_list', function() {
],
images: [],
javascript: [],
+ keygen: [],
media_stream_mic: [],
notifications: [],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};
@@ -92,6 +97,9 @@ cr.define('site_list', function() {
*/
var prefsMixedOriginAndPattern = {
exceptions: {
+ auto_downloads: [],
+ background_sync: [],
+ keygen: [],
media_stream_camera: [],
cookies: [],
fullscreen: [],
@@ -114,7 +122,9 @@ cr.define('site_list', function() {
images: [],
media_stream_mic: [],
notifications: [],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};
@@ -125,6 +135,8 @@ cr.define('site_list', function() {
*/
var prefsVarious = {
exceptions: {
+ auto_downloads: [],
+ background_sync: [],
media_stream_camera: [],
cookies: [],
fullscreen: [],
@@ -144,6 +156,7 @@ cr.define('site_list', function() {
],
images: [],
javascript: [],
+ keygen: [],
media_stream_mic: [],
notifications: [
{
@@ -165,7 +178,9 @@ cr.define('site_list', function() {
source: 'preference',
},
],
+ plugins: [],
popups: [],
+ unsandboxed_plugins: [],
}
};

Powered by Google App Engine
This is Rietveld 408576698