Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: chrome/browser/resources/settings/site_settings/site_details.js

Issue 1607483005: Show data usage on Site Details (MDSettings) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address feedback and add owner Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview 6 * @fileoverview
7 * 'site-details' show the details (permissions and usage) for a given origin 7 * 'site-details' show the details (permissions and usage) for a given origin
8 * under Site Settings. 8 * under Site Settings.
9 * 9 *
10 * Example: 10 * Example:
(...skipping 13 matching lines...) Expand all
24 * Preferences state. 24 * Preferences state.
25 */ 25 */
26 prefs: { 26 prefs: {
27 type: Object, 27 type: Object,
28 notify: true, 28 notify: true,
29 }, 29 },
30 30
31 /** 31 /**
32 * The origin that this widget is showing details for. 32 * The origin that this widget is showing details for.
33 */ 33 */
34 origin: String, 34 origin: {
35 type: String,
36 observer: 'onOriginChanged_',
37 },
35 38
36 /** 39 /**
37 * The amount of data stored for the origin. 40 * The amount of data stored for the origin.
38 */ 41 */
39 storedData_: { 42 storedData_: {
40 type: String, 43 type: String,
41 observer: 'onStoredDataChanged_', 44 value: '',
42 }, 45 },
43 }, 46 },
44 47
45 ready: function() { 48 ready: function() {
46 this.$.cookies.category = settings.ContentSettingsTypes.COOKIES; 49 this.$.cookies.category = settings.ContentSettingsTypes.COOKIES;
47 this.$.javascript.category = settings.ContentSettingsTypes.JAVASCRIPT; 50 this.$.javascript.category = settings.ContentSettingsTypes.JAVASCRIPT;
48 this.$.popups.category = settings.ContentSettingsTypes.POPUPS; 51 this.$.popups.category = settings.ContentSettingsTypes.POPUPS;
49 this.$.geolocation.category = settings.ContentSettingsTypes.GEOLOCATION; 52 this.$.geolocation.category = settings.ContentSettingsTypes.GEOLOCATION;
50 this.$.notification.category = settings.ContentSettingsTypes.NOTIFICATIONS; 53 this.$.notification.category = settings.ContentSettingsTypes.NOTIFICATIONS;
51 this.$.fullscreen.category = settings.ContentSettingsTypes.FULLSCREEN; 54 this.$.fullscreen.category = settings.ContentSettingsTypes.FULLSCREEN;
52 this.$.camera.category = settings.ContentSettingsTypes.CAMERA; 55 this.$.camera.category = settings.ContentSettingsTypes.CAMERA;
53 this.$.mic.category = settings.ContentSettingsTypes.MIC; 56 this.$.mic.category = settings.ContentSettingsTypes.MIC;
54
55 this.storedData_ = '1337 MB'; // TODO(finnur): Fetch actual data.
56 }, 57 },
57 58
58 onStoredDataChanged_: function() { 59 /**
59 this.$.usage.hidden = false; 60 * Handler for when the origin changes.
60 this.$.storage.hidden = false; 61 */
62 onOriginChanged_: function() {
63 var url = new URL(this.origin);
64 this.$.usageApi.fetchUsageTotal(url.host.split(':')[0]);
michaelpg 2016/01/27 18:42:47 Looks like this is equivalent to url.hostname: htt
Finnur 2016/01/28 11:17:49 Done.
61 }, 65 },
62 66
67 /**
68 * Clears all data stored for the current origin.
69 */
63 onClearStorage_: function() { 70 onClearStorage_: function() {
64 // TODO(finnur): Implement. 71 // TODO(finnur): Implement.
65 }, 72 },
66 73
74 /**
75 * Resets all permissions and clears all data stored for the current origin.
76 */
67 onClearAndReset_: function() { 77 onClearAndReset_: function() {
68 Array.prototype.forEach.call( 78 Array.prototype.forEach.call(
69 this.root.querySelectorAll('site-details-permission'), 79 this.root.querySelectorAll('site-details-permission'),
70 function(element) { element.resetPermission(); }); 80 function(element) { element.resetPermission(); });
71 81
72 this.onClearStorage_(); 82 this.onClearStorage_();
73 }, 83 },
74 }); 84 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698