Only grant permissions to new extensions from sync if they have the expected version
[chromium-blink-merge.git] / chrome / browser / resources / settings / basic_page / basic_page.js
blobdfef70fac8904516fc31f5048867c235c6073171
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
3 // found in the LICENSE file.
5 /**
6  * @fileoverview
7  * 'cr-settings-basic-page' is the settings page containing the basic settings.
8  *
9  * Example:
10  *
11  *    <iron-animated-pages>
12  *      <cr-settings-basic-page prefs="{{prefs}}"></cr-settings-basic-page>
13  *      ... other pages ...
14  *    </iron-animated-pages>
15  *
16  * @group Chrome Settings Elements
17  * @element cr-settings-basic-page
18  */
19 Polymer({
20   is: 'cr-settings-basic-page',
22   properties: {
23     /**
24      * Preferences state.
25      */
26     prefs: {
27       type: Object,
28       notify: true,
29     },
31     /**
32      * The current active route.
33      */
34     currentRoute: {
35       type: Array,
36       notify: true,
37     },
38   },
39 });