blob: c17a84e1799abcd8e901cab3d2ecabe933b36121 (
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// Copyright (c) 2010 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.
///////////////////////////////////////////////////////////////////////////////
// ContentSettings class:
/**
* Encapsulated handling of content settings page.
* @constructor
*/
function ContentSettings() {
this.activeNavTab = null;
OptionsPage.call(this, 'content', templateData.contentSettingsPage,
'contentSettingsPage');
}
cr.addSingletonGetter(ContentSettings);
ContentSettings.prototype = {
__proto__: OptionsPage.prototype,
initializePage: function() {
OptionsPage.prototype.initializePage.call(this);
chrome.send('getContentFilterSettings');
this.showTab($('cookies-nav-tab'));
var self = this;
$('content-settings-nav-tabs').onclick = function(event) {
self.showTab(event.srcElement);
};
// Cookies filter page -----------------------------------------------------
$('cookies-exceptions-button').onclick = function(event) {
// TODO(estade): show exceptions page.
};
$('block-third-party-cookies').onclick = function(event) {
chrome.send('setAllowThirdPartyCookies',
[String($('block-third-party-cookies').checked)]);
};
$('show-cookies-button').onclick = function(event) {
// TODO(estade): show cookies and other site data page.
};
// Images filter page ------------------------------------------------------
$('images-exceptions-button').onclick = function(event) {
// TODO(estade): show a dialog.
};
},
/**
* Shows the tab contents for the given navigation tab.
* @param {!Element} tab The tab that the user clicked.
*/
showTab: function(tab) {
if (!tab.classList.contains('inactive-tab'))
return;
if (this.activeNavTab != null) {
this.activeNavTab.classList.remove('active-tab');
$(this.activeNavTab.getAttribute('tab-contents')).classList.
remove('active-tab-contents');
}
tab.classList.add('active-tab');
$(tab.getAttribute('tab-contents')).classList.add('active-tab-contents');
this.activeNavTab = tab;
}
};
/**
* Sets the initial values for all the content settings radios.
* @param {Object} dict A mapping from radio groups to the checked value for
* that group.
*/
ContentSettings.setInitialContentFilterSettingsValue = function(dict) {
for (var group in dict) {
document.querySelector('input[type=radio][name=' + group +
'][value=' + dict[group] + ']').checked = true;
}
};
/**
* Sets the initial value for the Third Party Cookies checkbox.
* @param {boolean=} block True if we are blocking third party cookies.
*/
ContentSettings.setBlockThirdPartyCookies = function(block) {
$('block-third-party-cookies').checked = block;
};
|