Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / chrome / browser / resources / settings / privacy_page / privacy_page.js
bloba60827667038f6ed126ccdff0d4ad05ba85b2204
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-privacy-page' is the settings page containing privacy and
8  * security settings.
9  *
10  * Example:
11  *
12  *    <iron-animated-pages>
13  *      <cr-settings-privacy-page prefs="{{prefs}}">
14  *      </cr-settings-privacy-page>
15  *      ... other pages ...
16  *    </iron-animated-pages>
17  *
18  * @group Chrome Settings Elements
19  * @element cr-settings-privacy-page
20  */
21 Polymer({
22   is: 'cr-settings-privacy-page',
24   properties: {
25     /**
26      * Preferences state.
27      */
28     prefs: {
29       type: Object,
30       notify: true,
31     },
33     /**
34      * The current active route.
35      */
36     currentRoute: {
37       type: Object,
38       notify: true,
39     },
40   },
42   /** @private */
43   onManageCertificatesTap_: function() {
44     this.$.pages.setSubpageChain(['manage-certificates']);
45   },
47   /** @private */
48   onSiteSettingsTap_: function() {
49     this.$.pages.setSubpageChain(['site-settings']);
50   },
52   /** @private */
53   onClearBrowsingDataTap_: function() {
54     this.$.pages.setSubpageChain(['clear-browsing-data']);
55   },
56 });