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/cocoa_protocols_mac.h" | 7 #import "base/cocoa_protocols_mac.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/pref_member.h" | 10 #include "chrome/browser/prefs/pref_member.h" |
11 | 11 |
12 // Index of the "enabled" and "disabled" radio group settings in all tabs except | 12 // Index of the "enabled" and "disabled" radio group settings in all tabs except |
13 // for the cookies tab. | 13 // for the cookies tab. |
14 const NSInteger kContentSettingsEnabledIndex = 0; | 14 const NSInteger kContentSettingsEnabledIndex = 0; |
15 const NSInteger kContentSettingsDisabledIndex = 1; | 15 const NSInteger kContentSettingsDisabledIndex = 1; |
16 | 16 |
17 // Indices of the various cookie settings in the cookie radio group. | 17 // Indices of the various cookie settings in the cookie radio group. |
18 const NSInteger kCookieEnabledIndex = 0; | 18 const NSInteger kCookieEnabledIndex = 0; |
19 const NSInteger kCookieAskIndex = 1; | 19 const NSInteger kCookieAskIndex = 1; |
20 const NSInteger kCookieDisabledIndex = 2; | 20 const NSInteger kCookieDisabledIndex = 2; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 @property(assign, nonatomic) NSInteger cookieSettingIndex; | 80 @property(assign, nonatomic) NSInteger cookieSettingIndex; |
81 @property(assign, nonatomic) BOOL blockThirdPartyCookies; | 81 @property(assign, nonatomic) BOOL blockThirdPartyCookies; |
82 @property(assign, nonatomic) BOOL clearSiteDataOnExit; | 82 @property(assign, nonatomic) BOOL clearSiteDataOnExit; |
83 @property(assign, nonatomic) NSInteger imagesEnabledIndex; | 83 @property(assign, nonatomic) NSInteger imagesEnabledIndex; |
84 @property(assign, nonatomic) NSInteger javaScriptEnabledIndex; | 84 @property(assign, nonatomic) NSInteger javaScriptEnabledIndex; |
85 @property(assign, nonatomic) NSInteger popupsEnabledIndex; | 85 @property(assign, nonatomic) NSInteger popupsEnabledIndex; |
86 @property(assign, nonatomic) NSInteger pluginsEnabledIndex; | 86 @property(assign, nonatomic) NSInteger pluginsEnabledIndex; |
87 @property(assign, nonatomic) NSInteger geolocationSettingIndex; | 87 @property(assign, nonatomic) NSInteger geolocationSettingIndex; |
88 @property(assign, nonatomic) NSInteger notificationsSettingIndex; | 88 @property(assign, nonatomic) NSInteger notificationsSettingIndex; |
89 @end | 89 @end |
OLD | NEW |