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

Side by Side Diff: chrome/browser/content_settings/pref_content_settings_provider.cc

Issue 5528010: Implement preference and policy based content settings providers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/content_settings
Patch Set: Created 10 years 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2010 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.
4
5 #include "chrome/browser/content_settings/pref_content_settings_provider.h"
6
7 #include "base/command_line.h"
8 #include "chrome/browser/browser_thread.h"
9 #include "chrome/browser/content_settings/content_settings_details.h"
10 #include "chrome/browser/content_settings/content_settings_pattern.h"
11 #include "chrome/browser/prefs/pref_service.h"
12 #include "chrome/browser/prefs/scoped_pref_update.h"
13 #include "chrome/browser/profiles/profile.h"
14 #include "chrome/common/chrome_switches.h"
15 #include "chrome/common/notification_details.h"
16 #include "chrome/common/notification_service.h"
17 #include "chrome/common/notification_source.h"
18 #include "chrome/common/pref_names.h"
19
20 namespace {
21
22 // The default setting for each content type.
23 const ContentSetting kDefaultSettings[CONTENT_SETTINGS_NUM_TYPES] = {
24 CONTENT_SETTING_ALLOW, // CONTENT_SETTINGS_TYPE_COOKIES
25 CONTENT_SETTING_ALLOW, // CONTENT_SETTINGS_TYPE_IMAGES
26 CONTENT_SETTING_ALLOW, // CONTENT_SETTINGS_TYPE_JAVASCRIPT
27 CONTENT_SETTING_ALLOW, // CONTENT_SETTINGS_TYPE_PLUGINS
28 CONTENT_SETTING_BLOCK, // CONTENT_SETTINGS_TYPE_POPUPS
29 CONTENT_SETTING_ASK, // Not used for Geolocation
30 CONTENT_SETTING_ASK, // Not used for Notifications
31 };
32
33 // The names of the ContentSettingsType values, for use with dictionary prefs.
34 const char* kTypeNames[CONTENT_SETTINGS_NUM_TYPES] = {
35 "cookies",
36 "images",
37 "javascript",
38 "plugins",
39 "popups",
40 NULL, // Not used for Geolocation
41 NULL, // Not used for Notifications
42 };
43
44
45 // Map ASK for the plugins content type to BLOCK if click-to-play is
46 // not enabled.
47 ContentSetting ClickToPlayFixup(ContentSettingsType content_type,
48 ContentSetting setting) {
49 if (setting == CONTENT_SETTING_ASK &&
50 content_type == CONTENT_SETTINGS_TYPE_PLUGINS &&
51 !CommandLine::ForCurrentProcess()->HasSwitch(
52 switches::kEnableClickToPlay)) {
53 return CONTENT_SETTING_BLOCK;
54 }
55 return setting;
56 }
57
58 } // namespace
59
60 PrefContentSettingsProvider::PrefContentSettingsProvider(Profile* profile)
61 : profile_(profile),
62 is_off_the_record_(profile_->IsOffTheRecord()),
63 updating_preferences_(false) {
64 PrefService* prefs = profile->GetPrefs();
65
66 // Read global defaults.
67 DCHECK_EQ(arraysize(kTypeNames),
68 static_cast<size_t>(CONTENT_SETTINGS_NUM_TYPES));
69 ReadDefaultSettings(true);
70
71 pref_change_registrar_.Init(prefs);
72 pref_change_registrar_.Add(prefs::kDefaultContentSettings, this);
73 notification_registrar_.Add(this, NotificationType::PROFILE_DESTROYED,
74 Source<Profile>(profile_));
75 }
76
77 PrefContentSettingsProvider::~PrefContentSettingsProvider() {
78 UnregisterObservers();
79 }
80
81 bool PrefContentSettingsProvider::CanProvideDefaultSetting(
82 ContentSettingsType content_type) const {
83 return true;
84 }
85
86 ContentSetting PrefContentSettingsProvider::ProvideDefaultSetting(
87 ContentSettingsType content_type) const {
88 AutoLock auto_lock(lock_);
89 return default_content_settings_.settings[content_type];
90 }
91
92 void PrefContentSettingsProvider::UpdateDefaultSetting(
93 ContentSettingsType content_type,
94 ContentSetting setting) {
95 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
96 DCHECK(kTypeNames[content_type] != NULL); // Don't call this for Geolocation.
97 DCHECK(content_type != CONTENT_SETTINGS_TYPE_PLUGINS ||
98 setting != CONTENT_SETTING_ASK ||
99 CommandLine::ForCurrentProcess()->HasSwitch(
100 switches::kEnableClickToPlay));
101
102 // The default settings may not be directly modified for OTR sessions.
103 // Instead, they are synced to the main profile's setting.
104 if (is_off_the_record_)
105 return;
106
107 PrefService* prefs = profile_->GetPrefs();
108
109 DictionaryValue* default_settings_dictionary =
110 prefs->GetMutableDictionary(prefs::kDefaultContentSettings);
111 std::string dictionary_path(kTypeNames[content_type]);
112 updating_preferences_ = true;
113 {
114 AutoLock auto_lock(lock_);
115 ScopedPrefUpdate update(prefs, prefs::kDefaultContentSettings);
116 if ((setting == CONTENT_SETTING_DEFAULT) ||
117 (setting == kDefaultSettings[content_type])) {
118 default_content_settings_.settings[content_type] =
119 kDefaultSettings[content_type];
120 default_settings_dictionary->RemoveWithoutPathExpansion(dictionary_path,
121 NULL);
122 } else {
123 default_content_settings_.settings[content_type] = setting;
124 default_settings_dictionary->SetWithoutPathExpansion(
125 dictionary_path, Value::CreateIntegerValue(setting));
126 }
127 }
128 updating_preferences_ = false;
129
130 NotifyObservers(
131 ContentSettingsDetails(ContentSettingsPattern(), content_type, ""));
132 }
133
134 bool PrefContentSettingsProvider::DefaultSettingIsManaged(
135 ContentSettingsType content_type) const {
136 return false;
137 }
138
139 void PrefContentSettingsProvider::ResetToDefaults() {
140 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
141 AutoLock auto_lock(lock_);
142 default_content_settings_ = ContentSettings();
143 ForceDefaultsToBeExplicit();
144
145 if (!is_off_the_record_) {
146 PrefService* prefs = profile_->GetPrefs();
147 updating_preferences_ = true;
148 prefs->ClearPref(prefs::kDefaultContentSettings);
149 updating_preferences_ = false;
150 }
151 }
152
153 void PrefContentSettingsProvider::Observe(NotificationType type,
154 const NotificationSource& source,
155 const NotificationDetails& details) {
156 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
157
158 if (NotificationType::PREF_CHANGED == type) {
159 if (updating_preferences_)
160 return;
161
162 std::string* name = Details<std::string>(details).ptr();
163 if (prefs::kDefaultContentSettings == *name) {
164 ReadDefaultSettings(true);
165 } else {
166 NOTREACHED() << "Unexpected preference observed";
167 return;
168 }
169
170 if (!is_off_the_record_) {
171 NotifyObservers(ContentSettingsDetails(
172 ContentSettingsPattern(), CONTENT_SETTINGS_TYPE_DEFAULT, ""));
173 }
174 } else if (NotificationType::PROFILE_DESTROYED == type) {
175 UnregisterObservers();
176 } else {
177 NOTREACHED() << "Unexpected notification";
178 }
179 }
180
181 void PrefContentSettingsProvider::UnregisterObservers() {
182 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
183 if (!profile_)
184 return;
185 pref_change_registrar_.RemoveAll();
186 notification_registrar_.Remove(this, NotificationType::PROFILE_DESTROYED,
187 Source<Profile>(profile_));
188 profile_ = NULL;
189 }
190
191 void PrefContentSettingsProvider::ReadDefaultSettings(bool overwrite) {
192 PrefService* prefs = profile_->GetPrefs();
193 const DictionaryValue* default_settings_dictionary =
194 prefs->GetDictionary(prefs::kDefaultContentSettings);
195
196 if (overwrite)
197 default_content_settings_ = ContentSettings();
198
199 // Careful: The returned value could be NULL if the pref has never been set.
200 if (default_settings_dictionary != NULL) {
201 GetSettingsFromDictionary(default_settings_dictionary,
202 &default_content_settings_);
203 }
204 ForceDefaultsToBeExplicit();
205 }
206
207 void PrefContentSettingsProvider::ForceDefaultsToBeExplicit() {
208 DCHECK_EQ(arraysize(kDefaultSettings),
209 static_cast<size_t>(CONTENT_SETTINGS_NUM_TYPES));
210
211 for (int i = 0; i < CONTENT_SETTINGS_NUM_TYPES; ++i) {
212 if (default_content_settings_.settings[i] == CONTENT_SETTING_DEFAULT)
213 default_content_settings_.settings[i] = kDefaultSettings[i];
214 }
215 }
216
217 void PrefContentSettingsProvider::GetSettingsFromDictionary(
218 const DictionaryValue* dictionary,
219 ContentSettings* settings) {
220 for (DictionaryValue::key_iterator i(dictionary->begin_keys());
221 i != dictionary->end_keys(); ++i) {
222 const std::string& content_type(*i);
223 for (size_t type = 0; type < arraysize(kTypeNames); ++type) {
224 if ((kTypeNames[type] != NULL) && (kTypeNames[type] == content_type)) {
225 int setting = CONTENT_SETTING_DEFAULT;
226 bool found = dictionary->GetIntegerWithoutPathExpansion(content_type,
227 &setting);
228 DCHECK(found);
229 settings->settings[type] = IntToContentSetting(setting);
230 break;
231 }
232 }
233 }
234 // Migrate obsolete cookie prompt mode.
235 if (settings->settings[CONTENT_SETTINGS_TYPE_COOKIES] ==
236 CONTENT_SETTING_ASK)
237 settings->settings[CONTENT_SETTINGS_TYPE_COOKIES] = CONTENT_SETTING_BLOCK;
238
239 settings->settings[CONTENT_SETTINGS_TYPE_PLUGINS] =
240 ClickToPlayFixup(CONTENT_SETTINGS_TYPE_PLUGINS,
241 settings->settings[CONTENT_SETTINGS_TYPE_PLUGINS]);
242 }
243
244 void PrefContentSettingsProvider::NotifyObservers(
245 const ContentSettingsDetails& details) {
246 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
247 if (profile_ == NULL)
248 return;
249 NotificationService::current()->Notify(
250 NotificationType::CONTENT_SETTINGS_CHANGED,
251 Source<HostContentSettingsMap>(profile_->GetHostContentSettingsMap()),
252 Details<const ContentSettingsDetails>(&details));
253 }
254
255
256 // static
257 void PrefContentSettingsProvider::RegisterUserPrefs(PrefService* prefs) {
258 prefs->RegisterDictionaryPref(prefs::kDefaultContentSettings);
259 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698