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: [], |
} |
}; |