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

Side by Side Diff: chrome/browser/resources/settings/site_settings/site_settings_behavior.js

Issue 1477773003: Use dom-if to hide settings pages and show explicitly. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Behavior common to Site Settings classes. 6 * @fileoverview Behavior common to Site Settings classes.
7 */ 7 */
8 8
9 /** @polymerBehavior */ 9 /** @polymerBehavior */
10 var SiteSettingsBehaviorImpl = { 10 var SiteSettingsBehaviorImpl = {
11 properties: {
12 /**
13 * The ID of the category this element is displaying data for.
14 */
15 category: {
16 type: Number,
17 },
18 },
19
11 /** 20 /**
12 * Returns whether the category default is set to enabled or not. 21 * Returns whether the category default is set to enabled or not.
13 * @param {number} category The category to check. 22 * @param {number} category The category to check.
14 * @return {boolean} True if the category default is set to enabled. 23 * @return {boolean} True if the category default is set to enabled.
15 * @protected 24 * @protected
16 */ 25 */
17 isCategoryAllowed: function(category) { 26 isCategoryAllowed: function(category) {
18 var pref = this.getPref(this.computeCategoryPrefName(category)); 27 var pref = this.getPref(this.computeCategoryPrefName(category));
19 28
20 // FullScreen is Allow vs. Ask. 29 // FullScreen is Allow vs. Ask.
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 loadTimeData.getString('siteSettingsBlocked'); 225 loadTimeData.getString('siteSettingsBlocked');
217 default: 226 default:
218 assertNotReached(); 227 assertNotReached();
219 return ''; 228 return '';
220 } 229 }
221 }, 230 },
222 }; 231 };
223 232
224 /** @polymerBehavior */ 233 /** @polymerBehavior */
225 var SiteSettingsBehavior = [PrefsBehavior, SiteSettingsBehaviorImpl]; 234 var SiteSettingsBehavior = [PrefsBehavior, SiteSettingsBehaviorImpl];
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698