summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/site_settings/category_setting_exceptions.js
blob: 0d4a2107300c5a7982afc7f63e182ed806da68f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

/**
 * @fileoverview
 * 'category-setting-exceptions' is the polymer element for showing a certain
 * category of exceptions under Site Settings.
 */
Polymer({
  is: 'category-setting-exceptions',

  properties: {
    /**
     * Some content types (like Location) do not allow the user to manually
     * edit the exception list from within Settings.
     * @private
     */
    readOnlyList: {
      type: Boolean,
      value: false,
    },
  },

  /** @override */
  ready: function() {
    this.ContentSetting = settings.ContentSetting;
  },
});