| 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 a2785d1f31e352ee24dc401a45589e90b919d349..a0ef8dcfb2b39b8521082569b4ef138385144345 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
|
| @@ -14,7 +14,6 @@ var prefsEmpty = {
|
| cookies: '',
|
| geolocation: '',
|
| javascript: '',
|
| - keygen: '',
|
| mic: '',
|
| notifications: '',
|
| plugins: '',
|
| @@ -28,7 +27,6 @@ var prefsEmpty = {
|
| cookies: [],
|
| geolocation: [],
|
| javascript: [],
|
| - keygen: [],
|
| mic: [],
|
| notifications: [],
|
| plugins: [],
|
| @@ -145,8 +143,6 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.defaults.images;
|
| } else if (contentType == settings.ContentSettingsTypes.JAVASCRIPT) {
|
| pref = this.prefs_.defaults.javascript;
|
| - } else if (contentType == settings.ContentSettingsTypes.KEYGEN) {
|
| - pref = this.prefs_.defaults.keygen;
|
| } else if (contentType == settings.ContentSettingsTypes.MIC) {
|
| pref = this.prefs_.defaults.mic;
|
| } else if (contentType == settings.ContentSettingsTypes.NOTIFICATIONS) {
|
| @@ -187,8 +183,6 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.exceptions.images;
|
| else if (contentType == settings.ContentSettingsTypes.JAVASCRIPT)
|
| pref = this.prefs_.exceptions.javascript;
|
| - else if (contentType == settings.ContentSettingsTypes.KEYGEN)
|
| - pref = this.prefs_.exceptions.keygen;
|
| else if (contentType == settings.ContentSettingsTypes.MIC)
|
| pref = this.prefs_.exceptions.mic;
|
| else if (contentType == settings.ContentSettingsTypes.NOTIFICATIONS)
|
|
|