| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
| 8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 extern const char kWebKitTextAreasAreResizable[]; | 132 extern const char kWebKitTextAreasAreResizable[]; |
| 133 extern const char kWebKitJavaEnabled[]; | 133 extern const char kWebKitJavaEnabled[]; |
| 134 extern const char kWebkitTabsToLinks[]; | 134 extern const char kWebkitTabsToLinks[]; |
| 135 extern const char kWebKitAllowDisplayingInsecureContent[]; | 135 extern const char kWebKitAllowDisplayingInsecureContent[]; |
| 136 extern const char kWebKitAllowRunningInsecureContent[]; | 136 extern const char kWebKitAllowRunningInsecureContent[]; |
| 137 extern const char kPasswordManagerEnabled[]; | 137 extern const char kPasswordManagerEnabled[]; |
| 138 extern const char kPasswordManagerAllowShowPasswords[]; | 138 extern const char kPasswordManagerAllowShowPasswords[]; |
| 139 extern const char kPasswordGenerationEnabled[]; | 139 extern const char kPasswordGenerationEnabled[]; |
| 140 extern const char kAutologinEnabled[]; | 140 extern const char kAutologinEnabled[]; |
| 141 extern const char kReverseAutologinEnabled[]; | 141 extern const char kReverseAutologinEnabled[]; |
| 142 extern const char kReverseAutologinRejectedEmailList[]; |
| 142 extern const char kSafeBrowsingEnabled[]; | 143 extern const char kSafeBrowsingEnabled[]; |
| 143 extern const char kSafeBrowsingReportingEnabled[]; | 144 extern const char kSafeBrowsingReportingEnabled[]; |
| 144 extern const char kSafeBrowsingProceedAnywayDisabled[]; | 145 extern const char kSafeBrowsingProceedAnywayDisabled[]; |
| 145 extern const char kIncognitoModeAvailability[]; | 146 extern const char kIncognitoModeAvailability[]; |
| 146 extern const char kSearchSuggestEnabled[]; | 147 extern const char kSearchSuggestEnabled[]; |
| 147 extern const char kConfirmToQuitEnabled[]; | 148 extern const char kConfirmToQuitEnabled[]; |
| 148 extern const char kCookieBehavior[]; // OBSOLETE | 149 extern const char kCookieBehavior[]; // OBSOLETE |
| 149 extern const char kSyncedDefaultSearchProviderGUID[]; | 150 extern const char kSyncedDefaultSearchProviderGUID[]; |
| 150 extern const char kDefaultSearchProviderEnabled[]; | 151 extern const char kDefaultSearchProviderEnabled[]; |
| 151 extern const char kDefaultSearchProviderSearchURL[]; | 152 extern const char kDefaultSearchProviderSearchURL[]; |
| (...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 extern const char kNetworkProfileWarningsLeft[]; | 751 extern const char kNetworkProfileWarningsLeft[]; |
| 751 extern const char kNetworkProfileLastWarningTime[]; | 752 extern const char kNetworkProfileLastWarningTime[]; |
| 752 | 753 |
| 753 #if defined(OS_MACOSX) | 754 #if defined(OS_MACOSX) |
| 754 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 755 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 755 #endif // defined(OS_MACOSX) | 756 #endif // defined(OS_MACOSX) |
| 756 | 757 |
| 757 } // namespace prefs | 758 } // namespace prefs |
| 758 | 759 |
| 759 #endif // CHROME_COMMON_PREF_NAMES_H_ | 760 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |