summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/resources/settings/settings_ui/settings_ui.js
blob: bc21caa7e908b7598cf2af215f540c0897ca84e6 (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
// 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
 * 'cr-settings-ui' implements the UI for the Settings page.
 *
 * Example:
 *
 *    <cr-settings-ui prefs="{{prefs}}"></cr-settings-ui>
 *
 * @group Chrome Settings Elements
 * @element cr-settings-ui
 */
Polymer({
  is: 'cr-settings-ui',

  properties: {
    /**
     * Preferences state.
     * @type {?CrSettingsPrefsElement}
     */
    prefs: Object,
  },
});