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

Unified Diff: chrome/browser/resources/settings/site_settings/site_settings_behavior.js

Issue 1428313002: Add a page for showing the details for a given origin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback Created 5 years, 1 month 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/browser/resources/settings/site_settings/site_settings_behavior.js
diff --git a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
index 50ad9bf391c809f97a43f380ab3918eb56b83cee..a72c5c5735a67fb12ac1daa69e1ccb8ef1192a0e 100644
--- a/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
+++ b/chrome/browser/resources/settings/site_settings/site_settings_behavior.js
@@ -19,9 +19,9 @@ var SiteSettingsBehaviorImpl = {
// FullScreen is Allow vs. Ask.
if (category == settings.ContentSettingsTypes.FULLSCREEN)
- return pref.value != settings.DefaultValues.ASK;
+ return pref.value != settings.PermissionValues.ASK;
- return pref.value != settings.DefaultValues.BLOCK;
+ return pref.value != settings.PermissionValues.BLOCK;
},
/**

Powered by Google App Engine
This is Rietveld 408576698