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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
// 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
* 'site-details' show the details (permissions and usage) for a given origin
* under Site Settings.
*
* Example:
*
* <site-details prefs="{{prefs}}" origin="{{origin}}">
* </site-details>
* ... other pages ...
*
* @group Chrome Settings Elements
* @element site-details
*/
Polymer({
is: 'site-details',
properties: {
/**
* Preferences state.
*/
prefs: {
type: Object,
notify: true,
},
/**
* The origin that this widget is showing details for.
*/
origin: String,
/**
* The amount of data stored for the origin.
*/
storedData_: {
type: String,
observer: 'onStoredDataChanged_',
},
},
ready: function() {
this.$.cookies.category = settings.ContentSettingsTypes.COOKIES;
this.$.javascript.category = settings.ContentSettingsTypes.JAVASCRIPT;
this.$.popups.category = settings.ContentSettingsTypes.POPUPS;
this.$.geolocation.category = settings.ContentSettingsTypes.GEOLOCATION;
this.$.notification.category = settings.ContentSettingsTypes.NOTIFICATIONS;
this.$.fullscreen.category = settings.ContentSettingsTypes.FULLSCREEN;
this.$.camera.category = settings.ContentSettingsTypes.CAMERA;
this.$.mic.category = settings.ContentSettingsTypes.MIC;
this.storedData_ = '1337 MB'; // TODO(finnur): Fetch actual data.
},
onStoredDataChanged_: function() {
this.$.usage.hidden = false;
this.$.storage.hidden = false;
},
onClearStorage_: function() {
// TODO(finnur): Implement.
},
onClearAndReset_: function() {
Array.prototype.forEach.call(
this.root.querySelectorAll('site-details-permission'),
function(element) { element.resetPermission(); });
this.onClearStorage_();
},
});
|