| 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 2f4f8eb157c351b0773431c78d08d02d9614d173..66bf6a42050ad48ab88a0ae4b7f5afbf64f25971 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
|
| @@ -126,6 +126,8 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.defaults.mic;
|
| } else if (contentType == settings.ContentSettingsTypes.NOTIFICATIONS) {
|
| pref = this.prefs_.defaults.notifications;
|
| + } else if (contentType == settings.ContentSettingsTypes.PDF_DOCUMENTS) {
|
| + pref = this.prefs_.defaults.pdf_documents;
|
| } else if (contentType == settings.ContentSettingsTypes.POPUPS) {
|
| pref = this.prefs_.defaults.popups;
|
| } else if (contentType == settings.ContentSettingsTypes.PLUGINS) {
|
| @@ -168,6 +170,8 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
|
| pref = this.prefs_.exceptions.mic;
|
| else if (contentType == settings.ContentSettingsTypes.NOTIFICATIONS)
|
| pref = this.prefs_.exceptions.notifications;
|
| + else if (contentType == settings.ContentSettingsTypes.PDF_DOCUMENTS)
|
| + pref = this.prefs_.exceptions.pdf_documents;
|
| else if (contentType == settings.ContentSettingsTypes.PLUGINS)
|
| pref = this.prefs_.exceptions.plugins;
|
| else if (contentType == settings.ContentSettingsTypes.POPUPS)
|
|
|