| 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 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 extern const char kDeleteHostedAppsData[]; | 311 extern const char kDeleteHostedAppsData[]; |
| 312 extern const char kDeleteMediaLicenses[]; | 312 extern const char kDeleteMediaLicenses[]; |
| 313 extern const char kEnableContinuousSpellcheck[]; | 313 extern const char kEnableContinuousSpellcheck[]; |
| 314 extern const char kSpeechRecognitionFilterProfanities[]; | 314 extern const char kSpeechRecognitionFilterProfanities[]; |
| 315 extern const char kSavingBrowserHistoryDisabled[]; | 315 extern const char kSavingBrowserHistoryDisabled[]; |
| 316 extern const char kAllowDeletingBrowserHistory[]; | 316 extern const char kAllowDeletingBrowserHistory[]; |
| 317 extern const char kForceGoogleSafeSearch[]; | 317 extern const char kForceGoogleSafeSearch[]; |
| 318 extern const char kForceYouTubeSafetyMode[]; | 318 extern const char kForceYouTubeSafetyMode[]; |
| 319 extern const char kForceSessionSync[]; | 319 extern const char kForceSessionSync[]; |
| 320 extern const char kAllowedDomainsForApps[]; | 320 extern const char kAllowedDomainsForApps[]; |
| 321 extern const char kDeleteTimePeriod[]; | |
| 322 extern const char kLastClearBrowsingDataTime[]; | 321 extern const char kLastClearBrowsingDataTime[]; |
| 323 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; | 322 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; |
| 324 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 323 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 325 extern const char kUsesSystemTheme[]; | 324 extern const char kUsesSystemTheme[]; |
| 326 #endif | 325 #endif |
| 327 extern const char kCurrentThemePackFilename[]; | 326 extern const char kCurrentThemePackFilename[]; |
| 328 extern const char kCurrentThemeID[]; | 327 extern const char kCurrentThemeID[]; |
| 329 extern const char kCurrentThemeImages[]; | 328 extern const char kCurrentThemeImages[]; |
| 330 extern const char kCurrentThemeColors[]; | 329 extern const char kCurrentThemeColors[]; |
| 331 extern const char kCurrentThemeTints[]; | 330 extern const char kCurrentThemeTints[]; |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 #endif // defined(GOOGLE_CHROME_BUILD) | 817 #endif // defined(GOOGLE_CHROME_BUILD) |
| 819 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 818 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 820 #endif | 819 #endif |
| 821 | 820 |
| 822 extern const char kOriginTrialPublicKey[]; | 821 extern const char kOriginTrialPublicKey[]; |
| 823 extern const char kOriginTrialDisabledFeatures[]; | 822 extern const char kOriginTrialDisabledFeatures[]; |
| 824 | 823 |
| 825 } // namespace prefs | 824 } // namespace prefs |
| 826 | 825 |
| 827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 826 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |