| 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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 extern const char kDeleteHostedAppsData[]; | 307 extern const char kDeleteHostedAppsData[]; |
| 308 extern const char kDeauthorizeContentLicenses[]; | 308 extern const char kDeauthorizeContentLicenses[]; |
| 309 extern const char kEnableContinuousSpellcheck[]; | 309 extern const char kEnableContinuousSpellcheck[]; |
| 310 extern const char kSpeechRecognitionFilterProfanities[]; | 310 extern const char kSpeechRecognitionFilterProfanities[]; |
| 311 extern const char kSavingBrowserHistoryDisabled[]; | 311 extern const char kSavingBrowserHistoryDisabled[]; |
| 312 extern const char kAllowDeletingBrowserHistory[]; | 312 extern const char kAllowDeletingBrowserHistory[]; |
| 313 extern const char kForceGoogleSafeSearch[]; | 313 extern const char kForceGoogleSafeSearch[]; |
| 314 extern const char kForceYouTubeSafetyMode[]; | 314 extern const char kForceYouTubeSafetyMode[]; |
| 315 extern const char kForceSessionSync[]; | 315 extern const char kForceSessionSync[]; |
| 316 extern const char kAllowedDomainsForApps[]; | 316 extern const char kAllowedDomainsForApps[]; |
| 317 extern const char kDeleteTimePeriod[]; | |
| 318 extern const char kLastClearBrowsingDataTime[]; | 317 extern const char kLastClearBrowsingDataTime[]; |
| 319 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; | 318 extern const char kClearBrowsingDataHistoryNoticeShownTimes[]; |
| 320 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 319 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 321 extern const char kUsesSystemTheme[]; | 320 extern const char kUsesSystemTheme[]; |
| 322 #endif | 321 #endif |
| 323 extern const char kCurrentThemePackFilename[]; | 322 extern const char kCurrentThemePackFilename[]; |
| 324 extern const char kCurrentThemeID[]; | 323 extern const char kCurrentThemeID[]; |
| 325 extern const char kCurrentThemeImages[]; | 324 extern const char kCurrentThemeImages[]; |
| 326 extern const char kCurrentThemeColors[]; | 325 extern const char kCurrentThemeColors[]; |
| 327 extern const char kCurrentThemeTints[]; | 326 extern const char kCurrentThemeTints[]; |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 813 extern const char kMediaRouterEnableCloudServices[]; | 812 extern const char kMediaRouterEnableCloudServices[]; |
| 814 #endif // defined(GOOGLE_CHROME_BUILD) | 813 #endif // defined(GOOGLE_CHROME_BUILD) |
| 815 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 814 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 816 #endif | 815 #endif |
| 817 | 816 |
| 818 extern const char kOriginTrialPublicKey[]; | 817 extern const char kOriginTrialPublicKey[]; |
| 819 | 818 |
| 820 } // namespace prefs | 819 } // namespace prefs |
| 821 | 820 |
| 822 #endif // CHROME_COMMON_PREF_NAMES_H_ | 821 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |