| 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 // 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 extern const char kIpcDisabledMessages[]; | 166 extern const char kIpcDisabledMessages[]; |
| 167 extern const char kShowHomeButton[]; | 167 extern const char kShowHomeButton[]; |
| 168 extern const char kShowPageOptionsButtons[]; | 168 extern const char kShowPageOptionsButtons[]; |
| 169 extern const char kRecentlySelectedEncoding[]; | 169 extern const char kRecentlySelectedEncoding[]; |
| 170 extern const char kDeleteBrowsingHistory[]; | 170 extern const char kDeleteBrowsingHistory[]; |
| 171 extern const char kDeleteDownloadHistory[]; | 171 extern const char kDeleteDownloadHistory[]; |
| 172 extern const char kDeleteCache[]; | 172 extern const char kDeleteCache[]; |
| 173 extern const char kDeleteCookies[]; | 173 extern const char kDeleteCookies[]; |
| 174 extern const char kDeletePasswords[]; | 174 extern const char kDeletePasswords[]; |
| 175 extern const char kDeleteFormData[]; | 175 extern const char kDeleteFormData[]; |
| 176 extern const char kDeleteLSOData[]; | |
| 177 extern const char kClearPluginLSODataEnabled[]; | 176 extern const char kClearPluginLSODataEnabled[]; |
| 178 extern const char kEnableSpellCheck[]; | 177 extern const char kEnableSpellCheck[]; |
| 179 extern const char kEnabledLabsExperiments[]; | 178 extern const char kEnabledLabsExperiments[]; |
| 180 extern const char kEnableAutoSpellCorrect[]; | 179 extern const char kEnableAutoSpellCorrect[]; |
| 181 extern const char kSavingBrowserHistoryDisabled[]; | 180 extern const char kSavingBrowserHistoryDisabled[]; |
| 182 extern const char kDeleteTimePeriod[]; | 181 extern const char kDeleteTimePeriod[]; |
| 183 extern const char kPrintingEnabled[]; | 182 extern const char kPrintingEnabled[]; |
| 184 extern const char kPrintingPageHeaderLeft[]; | 183 extern const char kPrintingPageHeaderLeft[]; |
| 185 extern const char kPrintingPageHeaderCenter[]; | 184 extern const char kPrintingPageHeaderCenter[]; |
| 186 extern const char kPrintingPageHeaderRight[]; | 185 extern const char kPrintingPageHeaderRight[]; |
| (...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 extern const char kAuthNegotiateDelegateWhitelist[]; | 435 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 437 extern const char kGSSAPILibraryName[]; | 436 extern const char kGSSAPILibraryName[]; |
| 438 | 437 |
| 439 extern const char kKnownBackgroundPages[]; | 438 extern const char kKnownBackgroundPages[]; |
| 440 | 439 |
| 441 extern const char kDisable3DAPIs[]; | 440 extern const char kDisable3DAPIs[]; |
| 442 | 441 |
| 443 } // namespace prefs | 442 } // namespace prefs |
| 444 | 443 |
| 445 #endif // CHROME_COMMON_PREF_NAMES_H_ | 444 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |