OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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 #import <Cocoa/Cocoa.h> | 5 #import <Cocoa/Cocoa.h> |
6 | 6 |
7 #import "base/mac/cocoa_protocols.h" | 7 #import "base/mac/cocoa_protocols.h" |
8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
9 #include "chrome/common/content_settings_types.h" | 9 #include "chrome/common/content_settings_types.h" |
10 #include "chrome/browser/prefs/pref_change_registrar.h" | 10 #include "chrome/browser/prefs/pref_change_registrar.h" |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 @property(nonatomic) NSInteger geolocationSettingIndex; | 93 @property(nonatomic) NSInteger geolocationSettingIndex; |
94 @property(nonatomic) NSInteger notificationsSettingIndex; | 94 @property(nonatomic) NSInteger notificationsSettingIndex; |
95 | 95 |
96 @property(nonatomic, readonly) BOOL blockThirdPartyCookiesManaged; | 96 @property(nonatomic, readonly) BOOL blockThirdPartyCookiesManaged; |
97 @property(nonatomic, readonly) BOOL cookieSettingsManaged; | 97 @property(nonatomic, readonly) BOOL cookieSettingsManaged; |
98 @property(nonatomic, readonly) BOOL imagesSettingsManaged; | 98 @property(nonatomic, readonly) BOOL imagesSettingsManaged; |
99 @property(nonatomic, readonly) BOOL javaScriptSettingsManaged; | 99 @property(nonatomic, readonly) BOOL javaScriptSettingsManaged; |
100 @property(nonatomic, readonly) BOOL pluginsSettingsManaged; | 100 @property(nonatomic, readonly) BOOL pluginsSettingsManaged; |
101 @property(nonatomic, readonly) BOOL popupsSettingsManaged; | 101 @property(nonatomic, readonly) BOOL popupsSettingsManaged; |
102 @end | 102 @end |
OLD | NEW |