| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 #endif // defined(OS_CHROMEOS) | 258 #endif // defined(OS_CHROMEOS) |
| 259 extern const char kIpcDisabledMessages[]; | 259 extern const char kIpcDisabledMessages[]; |
| 260 extern const char kShowHomeButton[]; | 260 extern const char kShowHomeButton[]; |
| 261 extern const char kRecentlySelectedEncoding[]; | 261 extern const char kRecentlySelectedEncoding[]; |
| 262 extern const char kDeleteBrowsingHistory[]; | 262 extern const char kDeleteBrowsingHistory[]; |
| 263 extern const char kDeleteDownloadHistory[]; | 263 extern const char kDeleteDownloadHistory[]; |
| 264 extern const char kDeleteCache[]; | 264 extern const char kDeleteCache[]; |
| 265 extern const char kDeleteCookies[]; | 265 extern const char kDeleteCookies[]; |
| 266 extern const char kDeletePasswords[]; | 266 extern const char kDeletePasswords[]; |
| 267 extern const char kDeleteFormData[]; | 267 extern const char kDeleteFormData[]; |
| 268 extern const char kDeleteHostedAppsData[]; |
| 268 extern const char kDeauthorizeContentLicenses[]; | 269 extern const char kDeauthorizeContentLicenses[]; |
| 269 extern const char kEnableSpellCheck[]; | 270 extern const char kEnableSpellCheck[]; |
| 270 extern const char kSpeechInputTrayNotificationShown[]; | 271 extern const char kSpeechInputTrayNotificationShown[]; |
| 271 extern const char kSpeechRecognitionFilterProfanities[]; | 272 extern const char kSpeechRecognitionFilterProfanities[]; |
| 272 extern const char kEnabledLabsExperiments[]; | 273 extern const char kEnabledLabsExperiments[]; |
| 273 extern const char kEnableAutoSpellCorrect[]; | 274 extern const char kEnableAutoSpellCorrect[]; |
| 274 extern const char kSavingBrowserHistoryDisabled[]; | 275 extern const char kSavingBrowserHistoryDisabled[]; |
| 275 extern const char kDeleteTimePeriod[]; | 276 extern const char kDeleteTimePeriod[]; |
| 276 #if defined(TOOLKIT_GTK) | 277 #if defined(TOOLKIT_GTK) |
| 277 extern const char kUsesSystemTheme[]; | 278 extern const char kUsesSystemTheme[]; |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 #endif | 718 #endif |
| 718 | 719 |
| 719 extern const char kInManagedMode[]; | 720 extern const char kInManagedMode[]; |
| 720 | 721 |
| 721 extern const char kNetworkProfileWarningsLeft[]; | 722 extern const char kNetworkProfileWarningsLeft[]; |
| 722 extern const char kNetworkProfileLastWarningTime[]; | 723 extern const char kNetworkProfileLastWarningTime[]; |
| 723 | 724 |
| 724 } // namespace prefs | 725 } // namespace prefs |
| 725 | 726 |
| 726 #endif // CHROME_COMMON_PREF_NAMES_H_ | 727 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |