blob: d48b9628334505aba8fcfdfa670c417cbe6ed6f5 (
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.
#import <Cocoa/Cocoa.h>
#import "base/cocoa_protocols_mac.h"
#include "base/scoped_ptr.h"
#include "chrome/common/content_settings_types.h"
#include "chrome/browser/prefs/pref_member.h"
// Index of the "enabled" and "disabled" radio group settings in all tabs except
// the ones below.
const NSInteger kContentSettingsEnabledIndex = 0;
const NSInteger kContentSettingsDisabledIndex = 1;
// Indices of the various cookie settings in the cookie radio group.
const NSInteger kCookieEnabledIndex = 0;
const NSInteger kCookieDisabledIndex = 1;
// Indices of the various plugin settings in the plugins radio group.
const NSInteger kPluginsAllowIndex = 0;
const NSInteger kPluginsAllowSandboxedIndex = 1;
const NSInteger kPluginsBlockIndex = 2;
// Indices of the various geolocation settings in the geolocation radio group.
const NSInteger kGeolocationEnabledIndex = 0;
const NSInteger kGeolocationAskIndex = 1;
const NSInteger kGeolocationDisabledIndex = 2;
// Indices of the various notifications settings in the geolocation radio group.
const NSInteger kNotificationsEnabledIndex = 0;
const NSInteger kNotificationsAskIndex = 1;
const NSInteger kNotificationsDisabledIndex = 2;
namespace ContentSettingsDialogControllerInternal {
class PrefObserverBridge;
}
class Profile;
@class TabViewPickerTable;
// This controller manages a dialog that lets the user manage the content
// settings for several content setting types.
@interface ContentSettingsDialogController
: NSWindowController<NSWindowDelegate, NSTabViewDelegate> {
@private
IBOutlet NSTabView* tabView_;
IBOutlet TabViewPickerTable* tabViewPicker_;
Profile* profile_; // weak
IntegerPrefMember lastSelectedTab_;
BooleanPrefMember clearSiteDataOnExit_;
scoped_ptr<ContentSettingsDialogControllerInternal::PrefObserverBridge>
observer_; // Watches for pref changes.
}
// Show the content settings dialog associated with the given profile (or the
// original profile if this is an incognito profile). If no content settings
// dialog exists for this profile, create one and show it. Any resulting
// editor releases itself when closed.
+(id)showContentSettingsForType:(ContentSettingsType)settingsType
profile:(Profile*)profile;
// Closes an exceptions sheet, if one is attached.
- (void)closeExceptionsSheet;
- (IBAction)showCookies:(id)sender;
- (IBAction)openFlashPlayerSettings:(id)sender;
- (IBAction)openPluginsPage:(id)sender;
- (IBAction)showCookieExceptions:(id)sender;
- (IBAction)showImagesExceptions:(id)sender;
- (IBAction)showJavaScriptExceptions:(id)sender;
- (IBAction)showPluginsExceptions:(id)sender;
- (IBAction)showPopupsExceptions:(id)sender;
- (IBAction)showGeolocationExceptions:(id)sender;
- (IBAction)showNotificationsExceptions:(id)sender;
@end
@interface ContentSettingsDialogController (TestingAPI)
// Properties that the radio groups and checkboxes are bound to.
@property(nonatomic) NSInteger cookieSettingIndex;
@property(nonatomic) BOOL blockThirdPartyCookies;
@property(nonatomic) BOOL clearSiteDataOnExit;
@property(nonatomic) NSInteger imagesEnabledIndex;
@property(nonatomic) NSInteger javaScriptEnabledIndex;
@property(nonatomic) NSInteger popupsEnabledIndex;
@property(nonatomic) NSInteger pluginsEnabledIndex;
@property(nonatomic) NSInteger geolocationSettingIndex;
@property(nonatomic) NSInteger notificationsSettingIndex;
@end
|