OLD | NEW |
| (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 #import "chrome/browser/ui/cocoa/content_settings_dialog_controller.h" | |
6 | |
7 #import <Cocoa/Cocoa.h> | |
8 | |
9 #include "app/l10n_util.h" | |
10 #include "base/command_line.h" | |
11 #include "base/mac/mac_util.h" | |
12 #import "chrome/browser/content_settings/content_settings_details.h" | |
13 #import "chrome/browser/content_settings/host_content_settings_map.h" | |
14 #import "chrome/browser/geolocation/geolocation_content_settings_map.h" | |
15 #import "chrome/browser/geolocation/geolocation_exceptions_table_model.h" | |
16 #import "chrome/browser/notifications/desktop_notification_service.h" | |
17 #import "chrome/browser/notifications/notification_exceptions_table_model.h" | |
18 #include "chrome/browser/plugin_exceptions_table_model.h" | |
19 #include "chrome/browser/prefs/pref_service.h" | |
20 #include "chrome/browser/profiles/profile.h" | |
21 #include "chrome/browser/ui/browser.h" | |
22 #include "chrome/browser/ui/browser_window.h" | |
23 #import "chrome/browser/ui/cocoa/content_exceptions_window_controller.h" | |
24 #import "chrome/browser/ui/cocoa/cookies_window_controller.h" | |
25 #import "chrome/browser/ui/cocoa/l10n_util.h" | |
26 #import "chrome/browser/ui/cocoa/simple_content_exceptions_window_controller.h" | |
27 #import "chrome/browser/ui/cocoa/tab_view_picker_table.h" | |
28 #include "chrome/common/chrome_switches.h" | |
29 #include "chrome/common/notification_service.h" | |
30 #include "chrome/common/pref_names.h" | |
31 #include "chrome/common/url_constants.h" | |
32 #include "grit/locale_settings.h" | |
33 #include "grit/generated_resources.h" | |
34 | |
35 namespace { | |
36 | |
37 // Stores the currently visible content settings dialog, if any. | |
38 ContentSettingsDialogController* g_instance = nil; | |
39 | |
40 } // namespace | |
41 | |
42 | |
43 @interface ContentSettingsDialogController(Private) | |
44 - (id)initWithProfile:(Profile*)profile; | |
45 - (void)selectTab:(ContentSettingsType)settingsType; | |
46 - (void)showExceptionsForType:(ContentSettingsType)settingsType; | |
47 | |
48 // Callback when preferences are changed. |prefName| is the name of the | |
49 // pref that has changed. | |
50 - (void)prefChanged:(const std::string&)prefName; | |
51 | |
52 // Callback when content settings are changed. | |
53 - (void)contentSettingsChanged:(ContentSettingsDetails*)details; | |
54 | |
55 @end | |
56 | |
57 namespace ContentSettingsDialogControllerInternal { | |
58 | |
59 // A C++ class registered for changes in preferences. | |
60 class PrefObserverBridge : public NotificationObserver { | |
61 public: | |
62 PrefObserverBridge(ContentSettingsDialogController* controller) | |
63 : controller_(controller), disabled_(false) {} | |
64 | |
65 virtual ~PrefObserverBridge() {} | |
66 | |
67 virtual void Observe(NotificationType type, | |
68 const NotificationSource& source, | |
69 const NotificationDetails& details) { | |
70 if (disabled_) | |
71 return; | |
72 | |
73 // This is currently used by most notifications. | |
74 if (type == NotificationType::PREF_CHANGED) { | |
75 std::string* detail = Details<std::string>(details).ptr(); | |
76 if (detail) | |
77 [controller_ prefChanged:*detail]; | |
78 } | |
79 | |
80 // This is sent when the "is managed" state changes. | |
81 // TODO(markusheintz): Move all content settings to this notification. | |
82 if (type == NotificationType::CONTENT_SETTINGS_CHANGED) { | |
83 ContentSettingsDetails* settings_details = | |
84 Details<ContentSettingsDetails>(details).ptr(); | |
85 [controller_ contentSettingsChanged:settings_details]; | |
86 } | |
87 } | |
88 | |
89 void SetDisabled(bool disabled) { | |
90 disabled_ = disabled; | |
91 } | |
92 | |
93 private: | |
94 ContentSettingsDialogController* controller_; // weak, owns us | |
95 bool disabled_; // true if notifications should be ignored. | |
96 }; | |
97 | |
98 // A C++ utility class to disable notifications for PrefsObserverBridge. | |
99 // The intended usage is to create this on the stack. | |
100 class PrefObserverDisabler { | |
101 public: | |
102 PrefObserverDisabler(PrefObserverBridge *bridge) : bridge_(bridge) { | |
103 bridge_->SetDisabled(true); | |
104 } | |
105 | |
106 ~PrefObserverDisabler() { | |
107 bridge_->SetDisabled(false); | |
108 } | |
109 | |
110 private: | |
111 PrefObserverBridge *bridge_; | |
112 }; | |
113 | |
114 } // ContentSettingsDialogControllerInternal | |
115 | |
116 @implementation ContentSettingsDialogController | |
117 | |
118 + (id)showContentSettingsForType:(ContentSettingsType)settingsType | |
119 profile:(Profile*)profile { | |
120 profile = profile->GetOriginalProfile(); | |
121 if (!g_instance) | |
122 g_instance = [[self alloc] initWithProfile:profile]; | |
123 | |
124 // The code doesn't expect multiple profiles. Check that support for that | |
125 // hasn't been added. | |
126 DCHECK(g_instance->profile_ == profile); | |
127 | |
128 // Select desired tab. | |
129 if (settingsType == CONTENT_SETTINGS_TYPE_DEFAULT) { | |
130 // Remember the last visited page from local state. | |
131 int value = g_instance->lastSelectedTab_.GetValue(); | |
132 if (value >= 0 && value < CONTENT_SETTINGS_NUM_TYPES) | |
133 settingsType = static_cast<ContentSettingsType>(value); | |
134 if (settingsType == CONTENT_SETTINGS_TYPE_DEFAULT) | |
135 settingsType = CONTENT_SETTINGS_TYPE_COOKIES; | |
136 } | |
137 // TODO(thakis): Autosave window pos. | |
138 | |
139 [g_instance selectTab:settingsType]; | |
140 [g_instance showWindow:nil]; | |
141 [g_instance closeExceptionsSheet]; | |
142 return g_instance; | |
143 } | |
144 | |
145 - (id)initWithProfile:(Profile*)profile { | |
146 DCHECK(profile); | |
147 NSString* nibpath = | |
148 [base::mac::MainAppBundle() pathForResource:@"ContentSettings" | |
149 ofType:@"nib"]; | |
150 if ((self = [super initWithWindowNibPath:nibpath owner:self])) { | |
151 profile_ = profile; | |
152 | |
153 observer_.reset( | |
154 new ContentSettingsDialogControllerInternal::PrefObserverBridge(self)); | |
155 clearSiteDataOnExit_.Init(prefs::kClearSiteDataOnExit, | |
156 profile_->GetPrefs(), observer_.get()); | |
157 | |
158 // Manually observe notifications for preferences that are grouped in | |
159 // the HostContentSettingsMap or GeolocationContentSettingsMap. | |
160 PrefService* prefs = profile_->GetPrefs(); | |
161 registrar_.Init(prefs); | |
162 registrar_.Add(prefs::kBlockThirdPartyCookies, observer_.get()); | |
163 registrar_.Add(prefs::kBlockNonsandboxedPlugins, observer_.get()); | |
164 registrar_.Add(prefs::kDefaultContentSettings, observer_.get()); | |
165 registrar_.Add(prefs::kGeolocationDefaultContentSetting, observer_.get()); | |
166 | |
167 // We don't need to observe changes in this value. | |
168 lastSelectedTab_.Init(prefs::kContentSettingsWindowLastTabIndex, | |
169 profile_->GetPrefs(), NULL); | |
170 } | |
171 return self; | |
172 } | |
173 | |
174 - (void)closeExceptionsSheet { | |
175 NSWindow* attachedSheet = [[self window] attachedSheet]; | |
176 if (attachedSheet) { | |
177 [NSApp endSheet:attachedSheet]; | |
178 } | |
179 } | |
180 | |
181 - (void)awakeFromNib { | |
182 DCHECK([self window]); | |
183 DCHECK(tabView_); | |
184 DCHECK(tabViewPicker_); | |
185 DCHECK_EQ(self, [[self window] delegate]); | |
186 | |
187 // Adapt views to potentially long localized strings. | |
188 CGFloat windowDelta = 0; | |
189 for (NSTabViewItem* tab in [tabView_ tabViewItems]) { | |
190 NSArray* subviews = [[tab view] subviews]; | |
191 windowDelta = MAX(windowDelta, | |
192 cocoa_l10n_util::VerticallyReflowGroup(subviews)); | |
193 | |
194 for (NSView* view in subviews) { | |
195 // Since the tab pane is in a horizontal resizer in IB, it's convenient | |
196 // to give all the subviews flexible width so that their sizes are | |
197 // autoupdated in IB. However, in chrome, the subviews shouldn't have | |
198 // flexible widths as this looks weird. | |
199 [view setAutoresizingMask:NSViewMaxXMargin | NSViewMinYMargin]; | |
200 } | |
201 } | |
202 | |
203 NSString* label = | |
204 l10n_util::GetNSStringWithFixup(IDS_CONTENT_SETTINGS_FEATURES_LABEL); | |
205 label = [label stringByReplacingOccurrencesOfString:@":" withString:@""]; | |
206 [tabViewPicker_ setHeading:label]; | |
207 | |
208 if (!CommandLine::ForCurrentProcess()->HasSwitch( | |
209 switches::kEnableClickToPlay)) { | |
210 // The |pluginsEnabledIndex| property is bound to the selected *tag*, | |
211 // so we don't have to worry about index shifts when removing a row | |
212 // from the matrix. | |
213 [pluginDefaultSettingMatrix_ removeRow:kPluginsAskIndex]; | |
214 NSArray* siblingViews = [[pluginDefaultSettingMatrix_ superview] subviews]; | |
215 for (NSView* view in siblingViews) { | |
216 NSRect frame = [view frame]; | |
217 if (frame.origin.y < [pluginDefaultSettingMatrix_ frame].origin.y) { | |
218 frame.origin.y += | |
219 ([pluginDefaultSettingMatrix_ cellSize].height + | |
220 [pluginDefaultSettingMatrix_ intercellSpacing].height); | |
221 [view setFrame:frame]; | |
222 } | |
223 } | |
224 } | |
225 | |
226 NSRect frame = [[self window] frame]; | |
227 frame.origin.y -= windowDelta; | |
228 frame.size.height += windowDelta; | |
229 [[self window] setFrame:frame display:NO]; | |
230 } | |
231 | |
232 // NSWindowDelegate method. | |
233 - (void)windowWillClose:(NSNotification*)notification { | |
234 [self autorelease]; | |
235 g_instance = nil; | |
236 } | |
237 | |
238 - (void)selectTab:(ContentSettingsType)settingsType { | |
239 [self window]; // Make sure the nib file is loaded. | |
240 DCHECK(tabView_); | |
241 [tabView_ selectTabViewItemAtIndex:settingsType]; | |
242 } | |
243 | |
244 // NSTabViewDelegate method. | |
245 - (void) tabView:(NSTabView*)tabView | |
246 didSelectTabViewItem:(NSTabViewItem*)tabViewItem { | |
247 DCHECK_EQ(tabView_, tabView); | |
248 NSInteger index = [tabView indexOfTabViewItem:tabViewItem]; | |
249 DCHECK_GT(index, CONTENT_SETTINGS_TYPE_DEFAULT); | |
250 DCHECK_LT(index, CONTENT_SETTINGS_NUM_TYPES); | |
251 if (index > CONTENT_SETTINGS_TYPE_DEFAULT && | |
252 index < CONTENT_SETTINGS_NUM_TYPES) | |
253 lastSelectedTab_.SetValue(index); | |
254 } | |
255 | |
256 // Let esc close the window. | |
257 - (void)cancel:(id)sender { | |
258 [self close]; | |
259 } | |
260 | |
261 - (void)setCookieSettingIndex:(NSInteger)value { | |
262 ContentSetting setting = CONTENT_SETTING_DEFAULT; | |
263 switch (value) { | |
264 case kCookieEnabledIndex: setting = CONTENT_SETTING_ALLOW; break; | |
265 case kCookieDisabledIndex: setting = CONTENT_SETTING_BLOCK; break; | |
266 default: | |
267 NOTREACHED(); | |
268 } | |
269 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
270 disabler(observer_.get()); | |
271 profile_->GetHostContentSettingsMap()->SetDefaultContentSetting( | |
272 CONTENT_SETTINGS_TYPE_COOKIES, | |
273 setting); | |
274 } | |
275 | |
276 - (NSInteger)cookieSettingIndex { | |
277 switch (profile_->GetHostContentSettingsMap()->GetDefaultContentSetting( | |
278 CONTENT_SETTINGS_TYPE_COOKIES)) { | |
279 case CONTENT_SETTING_ALLOW: return kCookieEnabledIndex; | |
280 case CONTENT_SETTING_BLOCK: return kCookieDisabledIndex; | |
281 default: | |
282 NOTREACHED(); | |
283 return kCookieEnabledIndex; | |
284 } | |
285 } | |
286 | |
287 - (BOOL)cookieSettingsManaged { | |
288 return profile_->GetHostContentSettingsMap()->IsDefaultContentSettingManaged( | |
289 CONTENT_SETTINGS_TYPE_COOKIES); | |
290 } | |
291 | |
292 - (BOOL)blockThirdPartyCookies { | |
293 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
294 return settingsMap->BlockThirdPartyCookies(); | |
295 } | |
296 | |
297 - (void)setBlockThirdPartyCookies:(BOOL)value { | |
298 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
299 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
300 disabler(observer_.get()); | |
301 settingsMap->SetBlockThirdPartyCookies(value); | |
302 } | |
303 | |
304 - (BOOL)blockThirdPartyCookiesManaged { | |
305 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
306 return settingsMap->IsBlockThirdPartyCookiesManaged(); | |
307 } | |
308 | |
309 - (BOOL)clearSiteDataOnExit { | |
310 return clearSiteDataOnExit_.GetValue(); | |
311 } | |
312 | |
313 - (void)setClearSiteDataOnExit:(BOOL)value { | |
314 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
315 disabler(observer_.get()); | |
316 clearSiteDataOnExit_.SetValue(value); | |
317 } | |
318 | |
319 // Shows the cookies controller. | |
320 - (IBAction)showCookies:(id)sender { | |
321 // The cookie controller will autorelease itself when it's closed. | |
322 BrowsingDataDatabaseHelper* databaseHelper = | |
323 new BrowsingDataDatabaseHelper(profile_); | |
324 BrowsingDataLocalStorageHelper* storageHelper = | |
325 new BrowsingDataLocalStorageHelper(profile_); | |
326 BrowsingDataAppCacheHelper* appcacheHelper = | |
327 new BrowsingDataAppCacheHelper(profile_); | |
328 BrowsingDataIndexedDBHelper* indexedDBHelper = | |
329 BrowsingDataIndexedDBHelper::Create(profile_); | |
330 CookiesWindowController* controller = | |
331 [[CookiesWindowController alloc] initWithProfile:profile_ | |
332 databaseHelper:databaseHelper | |
333 storageHelper:storageHelper | |
334 appcacheHelper:appcacheHelper | |
335 indexedDBHelper:indexedDBHelper]; | |
336 [controller attachSheetTo:[self window]]; | |
337 } | |
338 | |
339 // Called when the user clicks the "Flash Player storage settings" button. | |
340 - (IBAction)openFlashPlayerSettings:(id)sender { | |
341 Browser* browser = Browser::Create(profile_); | |
342 browser->OpenURL(GURL(l10n_util::GetStringUTF8(IDS_FLASH_STORAGE_URL)), | |
343 GURL(), NEW_FOREGROUND_TAB, PageTransition::LINK); | |
344 browser->window()->Show(); | |
345 } | |
346 | |
347 // Called when the user clicks the "Disable individual plug-ins..." button. | |
348 - (IBAction)openPluginsPage:(id)sender { | |
349 Browser* browser = Browser::Create(profile_); | |
350 browser->OpenURL(GURL(chrome::kChromeUIPluginsURL), | |
351 GURL(), NEW_FOREGROUND_TAB, PageTransition::LINK); | |
352 browser->window()->Show(); | |
353 } | |
354 | |
355 - (IBAction)showCookieExceptions:(id)sender { | |
356 [self showExceptionsForType:CONTENT_SETTINGS_TYPE_COOKIES]; | |
357 } | |
358 | |
359 - (IBAction)showImagesExceptions:(id)sender { | |
360 [self showExceptionsForType:CONTENT_SETTINGS_TYPE_IMAGES]; | |
361 } | |
362 | |
363 - (IBAction)showJavaScriptExceptions:(id)sender { | |
364 [self showExceptionsForType:CONTENT_SETTINGS_TYPE_JAVASCRIPT]; | |
365 } | |
366 | |
367 - (IBAction)showPluginsExceptions:(id)sender { | |
368 if (CommandLine::ForCurrentProcess()->HasSwitch( | |
369 switches::kEnableResourceContentSettings)) { | |
370 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
371 HostContentSettingsMap* offTheRecordSettingsMap = | |
372 profile_->HasOffTheRecordProfile() ? | |
373 profile_->GetOffTheRecordProfile()->GetHostContentSettingsMap() : | |
374 NULL; | |
375 PluginExceptionsTableModel* model = | |
376 new PluginExceptionsTableModel(settingsMap, offTheRecordSettingsMap); | |
377 model->LoadSettings(); | |
378 [[SimpleContentExceptionsWindowController controllerWithTableModel:model] | |
379 attachSheetTo:[self window]]; | |
380 } else { | |
381 [self showExceptionsForType:CONTENT_SETTINGS_TYPE_PLUGINS]; | |
382 } | |
383 } | |
384 | |
385 - (IBAction)showPopupsExceptions:(id)sender { | |
386 [self showExceptionsForType:CONTENT_SETTINGS_TYPE_POPUPS]; | |
387 } | |
388 | |
389 - (IBAction)showGeolocationExceptions:(id)sender { | |
390 GeolocationContentSettingsMap* settingsMap = | |
391 profile_->GetGeolocationContentSettingsMap(); | |
392 GeolocationExceptionsTableModel* model = // Freed by window controller. | |
393 new GeolocationExceptionsTableModel(settingsMap); | |
394 [[SimpleContentExceptionsWindowController controllerWithTableModel:model] | |
395 attachSheetTo:[self window]]; | |
396 } | |
397 | |
398 - (IBAction)showNotificationsExceptions:(id)sender { | |
399 DesktopNotificationService* service = | |
400 profile_->GetDesktopNotificationService(); | |
401 NotificationExceptionsTableModel* model = // Freed by window controller. | |
402 new NotificationExceptionsTableModel(service); | |
403 [[SimpleContentExceptionsWindowController controllerWithTableModel:model] | |
404 attachSheetTo:[self window]]; | |
405 } | |
406 | |
407 - (void)showExceptionsForType:(ContentSettingsType)settingsType { | |
408 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
409 HostContentSettingsMap* offTheRecordSettingsMap = | |
410 profile_->HasOffTheRecordProfile() ? | |
411 profile_->GetOffTheRecordProfile()->GetHostContentSettingsMap() : | |
412 NULL; | |
413 [[ContentExceptionsWindowController controllerForType:settingsType | |
414 settingsMap:settingsMap | |
415 otrSettingsMap:offTheRecordSettingsMap] | |
416 attachSheetTo:[self window]]; | |
417 } | |
418 | |
419 - (void)setImagesEnabledIndex:(NSInteger)value { | |
420 ContentSetting setting = value == kContentSettingsEnabledIndex ? | |
421 CONTENT_SETTING_ALLOW : CONTENT_SETTING_BLOCK; | |
422 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
423 disabler(observer_.get()); | |
424 profile_->GetHostContentSettingsMap()->SetDefaultContentSetting( | |
425 CONTENT_SETTINGS_TYPE_IMAGES, setting); | |
426 } | |
427 | |
428 - (NSInteger)imagesEnabledIndex { | |
429 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
430 bool enabled = | |
431 settingsMap->GetDefaultContentSetting(CONTENT_SETTINGS_TYPE_IMAGES) == | |
432 CONTENT_SETTING_ALLOW; | |
433 return enabled ? kContentSettingsEnabledIndex : kContentSettingsDisabledIndex; | |
434 } | |
435 | |
436 - (BOOL)imagesSettingsManaged { | |
437 return profile_->GetHostContentSettingsMap()->IsDefaultContentSettingManaged( | |
438 CONTENT_SETTINGS_TYPE_IMAGES); | |
439 } | |
440 | |
441 - (void)setJavaScriptEnabledIndex:(NSInteger)value { | |
442 ContentSetting setting = value == kContentSettingsEnabledIndex ? | |
443 CONTENT_SETTING_ALLOW : CONTENT_SETTING_BLOCK; | |
444 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
445 disabler(observer_.get()); | |
446 profile_->GetHostContentSettingsMap()->SetDefaultContentSetting( | |
447 CONTENT_SETTINGS_TYPE_JAVASCRIPT, setting); | |
448 } | |
449 | |
450 - (NSInteger)javaScriptEnabledIndex { | |
451 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
452 bool enabled = | |
453 settingsMap->GetDefaultContentSetting(CONTENT_SETTINGS_TYPE_JAVASCRIPT) == | |
454 CONTENT_SETTING_ALLOW; | |
455 return enabled ? kContentSettingsEnabledIndex : kContentSettingsDisabledIndex; | |
456 } | |
457 | |
458 - (BOOL)javaScriptSettingsManaged { | |
459 return profile_->GetHostContentSettingsMap()->IsDefaultContentSettingManaged( | |
460 CONTENT_SETTINGS_TYPE_JAVASCRIPT); | |
461 } | |
462 | |
463 - (void)setPluginsEnabledIndex:(NSInteger)value { | |
464 ContentSetting setting = CONTENT_SETTING_DEFAULT; | |
465 switch (value) { | |
466 case kPluginsAllowIndex: | |
467 setting = CONTENT_SETTING_ALLOW; | |
468 break; | |
469 case kPluginsAskIndex: | |
470 setting = CONTENT_SETTING_ASK; | |
471 break; | |
472 case kPluginsBlockIndex: | |
473 setting = CONTENT_SETTING_BLOCK; | |
474 break; | |
475 default: | |
476 NOTREACHED(); | |
477 } | |
478 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
479 disabler(observer_.get()); | |
480 profile_->GetHostContentSettingsMap()->SetDefaultContentSetting( | |
481 CONTENT_SETTINGS_TYPE_PLUGINS, setting); | |
482 } | |
483 | |
484 - (NSInteger)pluginsEnabledIndex { | |
485 HostContentSettingsMap* map = profile_->GetHostContentSettingsMap(); | |
486 ContentSetting setting = | |
487 map->GetDefaultContentSetting(CONTENT_SETTINGS_TYPE_PLUGINS); | |
488 switch (setting) { | |
489 case CONTENT_SETTING_ALLOW: | |
490 return kPluginsAllowIndex; | |
491 case CONTENT_SETTING_ASK: | |
492 if (CommandLine::ForCurrentProcess()->HasSwitch( | |
493 switches::kEnableClickToPlay)) | |
494 return kPluginsAskIndex; | |
495 // Fall through to the next case. | |
496 case CONTENT_SETTING_BLOCK: | |
497 return kPluginsBlockIndex; | |
498 default: | |
499 NOTREACHED(); | |
500 return kPluginsAllowIndex; | |
501 } | |
502 } | |
503 | |
504 - (BOOL)pluginsSettingsManaged { | |
505 return profile_->GetHostContentSettingsMap()->IsDefaultContentSettingManaged( | |
506 CONTENT_SETTINGS_TYPE_PLUGINS); | |
507 } | |
508 | |
509 - (void)setPopupsEnabledIndex:(NSInteger)value { | |
510 ContentSetting setting = value == kContentSettingsEnabledIndex ? | |
511 CONTENT_SETTING_ALLOW : CONTENT_SETTING_BLOCK; | |
512 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
513 disabler(observer_.get()); | |
514 profile_->GetHostContentSettingsMap()->SetDefaultContentSetting( | |
515 CONTENT_SETTINGS_TYPE_POPUPS, setting); | |
516 } | |
517 | |
518 - (NSInteger)popupsEnabledIndex { | |
519 HostContentSettingsMap* settingsMap = profile_->GetHostContentSettingsMap(); | |
520 bool enabled = | |
521 settingsMap->GetDefaultContentSetting(CONTENT_SETTINGS_TYPE_POPUPS) == | |
522 CONTENT_SETTING_ALLOW; | |
523 return enabled ? kContentSettingsEnabledIndex : kContentSettingsDisabledIndex; | |
524 } | |
525 | |
526 - (BOOL)popupsSettingsManaged { | |
527 return profile_->GetHostContentSettingsMap()->IsDefaultContentSettingManaged( | |
528 CONTENT_SETTINGS_TYPE_POPUPS); | |
529 } | |
530 | |
531 - (void)setGeolocationSettingIndex:(NSInteger)value { | |
532 ContentSetting setting = CONTENT_SETTING_DEFAULT; | |
533 switch (value) { | |
534 case kGeolocationEnabledIndex: setting = CONTENT_SETTING_ALLOW; break; | |
535 case kGeolocationAskIndex: setting = CONTENT_SETTING_ASK; break; | |
536 case kGeolocationDisabledIndex: setting = CONTENT_SETTING_BLOCK; break; | |
537 default: | |
538 NOTREACHED(); | |
539 } | |
540 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
541 disabler(observer_.get()); | |
542 profile_->GetGeolocationContentSettingsMap()->SetDefaultContentSetting( | |
543 setting); | |
544 } | |
545 | |
546 - (NSInteger)geolocationSettingIndex { | |
547 ContentSetting setting = | |
548 profile_->GetGeolocationContentSettingsMap()->GetDefaultContentSetting(); | |
549 switch (setting) { | |
550 case CONTENT_SETTING_ALLOW: return kGeolocationEnabledIndex; | |
551 case CONTENT_SETTING_ASK: return kGeolocationAskIndex; | |
552 case CONTENT_SETTING_BLOCK: return kGeolocationDisabledIndex; | |
553 default: | |
554 NOTREACHED(); | |
555 return kGeolocationAskIndex; | |
556 } | |
557 } | |
558 | |
559 - (void)setNotificationsSettingIndex:(NSInteger)value { | |
560 ContentSetting setting = CONTENT_SETTING_DEFAULT; | |
561 switch (value) { | |
562 case kNotificationsEnabledIndex: setting = CONTENT_SETTING_ALLOW; break; | |
563 case kNotificationsAskIndex: setting = CONTENT_SETTING_ASK; break; | |
564 case kNotificationsDisabledIndex: setting = CONTENT_SETTING_BLOCK; break; | |
565 default: | |
566 NOTREACHED(); | |
567 } | |
568 ContentSettingsDialogControllerInternal::PrefObserverDisabler | |
569 disabler(observer_.get()); | |
570 profile_->GetDesktopNotificationService()->SetDefaultContentSetting( | |
571 setting); | |
572 } | |
573 | |
574 - (NSInteger)notificationsSettingIndex { | |
575 ContentSetting setting = | |
576 profile_->GetDesktopNotificationService()->GetDefaultContentSetting(); | |
577 switch (setting) { | |
578 case CONTENT_SETTING_ALLOW: return kNotificationsEnabledIndex; | |
579 case CONTENT_SETTING_ASK: return kNotificationsAskIndex; | |
580 case CONTENT_SETTING_BLOCK: return kNotificationsDisabledIndex; | |
581 default: | |
582 NOTREACHED(); | |
583 return kGeolocationAskIndex; | |
584 } | |
585 } | |
586 | |
587 // Callback when preferences are changed. |prefName| is the name of the | |
588 // pref that has changed and should not be NULL. | |
589 - (void)prefChanged:(const std::string&)prefName { | |
590 if (prefName == prefs::kClearSiteDataOnExit) { | |
591 [self willChangeValueForKey:@"clearSiteDataOnExit"]; | |
592 [self didChangeValueForKey:@"clearSiteDataOnExit"]; | |
593 } | |
594 if (prefName == prefs::kBlockThirdPartyCookies) { | |
595 [self willChangeValueForKey:@"blockThirdPartyCookies"]; | |
596 [self didChangeValueForKey:@"blockThirdPartyCookies"]; | |
597 [self willChangeValueForKey:@"blockThirdPartyCookiesManaged"]; | |
598 [self didChangeValueForKey:@"blockThirdPartyCookiesManaged"]; | |
599 } | |
600 if (prefName == prefs::kBlockNonsandboxedPlugins) { | |
601 [self willChangeValueForKey:@"pluginsEnabledIndex"]; | |
602 [self didChangeValueForKey:@"pluginsEnabledIndex"]; | |
603 } | |
604 if (prefName == prefs::kDefaultContentSettings) { | |
605 // We don't know exactly which setting has changed, so we'll tickle all | |
606 // of the properties that apply to kDefaultContentSettings. This will | |
607 // keep the UI up-to-date. | |
608 [self willChangeValueForKey:@"cookieSettingIndex"]; | |
609 [self didChangeValueForKey:@"cookieSettingIndex"]; | |
610 [self willChangeValueForKey:@"imagesEnabledIndex"]; | |
611 [self didChangeValueForKey:@"imagesEnabledIndex"]; | |
612 [self willChangeValueForKey:@"javaScriptEnabledIndex"]; | |
613 [self didChangeValueForKey:@"javaScriptEnabledIndex"]; | |
614 [self willChangeValueForKey:@"pluginsEnabledIndex"]; | |
615 [self didChangeValueForKey:@"pluginsEnabledIndex"]; | |
616 [self willChangeValueForKey:@"popupsEnabledIndex"]; | |
617 [self didChangeValueForKey:@"popupsEnabledIndex"]; | |
618 | |
619 // Updates the "Enable" state of the radio groups and the exception buttons. | |
620 [self willChangeValueForKey:@"cookieSettingsManaged"]; | |
621 [self didChangeValueForKey:@"cookieSettingsManaged"]; | |
622 [self willChangeValueForKey:@"imagesSettingsManaged"]; | |
623 [self didChangeValueForKey:@"imagesSettingsManaged"]; | |
624 [self willChangeValueForKey:@"javaScriptSettingsManaged"]; | |
625 [self didChangeValueForKey:@"javaScriptSettingsManaged"]; | |
626 [self willChangeValueForKey:@"pluginsSettingsManaged"]; | |
627 [self didChangeValueForKey:@"pluginsSettingsManaged"]; | |
628 [self willChangeValueForKey:@"popupsSettingsManaged"]; | |
629 [self didChangeValueForKey:@"popupsSettingsManaged"]; | |
630 } | |
631 if (prefName == prefs::kGeolocationDefaultContentSetting) { | |
632 [self willChangeValueForKey:@"geolocationSettingIndex"]; | |
633 [self didChangeValueForKey:@"geolocationSettingIndex"]; | |
634 } | |
635 if (prefName == prefs::kDesktopNotificationDefaultContentSetting) { | |
636 [self willChangeValueForKey:@"notificationsSettingIndex"]; | |
637 [self didChangeValueForKey:@"notificationsSettingIndex"]; | |
638 } | |
639 } | |
640 | |
641 - (void)contentSettingsChanged:(ContentSettingsDetails*)details { | |
642 [self prefChanged:prefs::kBlockNonsandboxedPlugins]; | |
643 [self prefChanged:prefs::kDefaultContentSettings]; | |
644 } | |
645 | |
646 @end | |
OLD | NEW |