| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 namespace prefs { | 10 namespace prefs { |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 extern const wchar_t kPrintingPageHeaderLeft[]; | 85 extern const wchar_t kPrintingPageHeaderLeft[]; |
| 86 extern const wchar_t kPrintingPageHeaderCenter[]; | 86 extern const wchar_t kPrintingPageHeaderCenter[]; |
| 87 extern const wchar_t kPrintingPageHeaderRight[]; | 87 extern const wchar_t kPrintingPageHeaderRight[]; |
| 88 extern const wchar_t kPrintingPageFooterLeft[]; | 88 extern const wchar_t kPrintingPageFooterLeft[]; |
| 89 extern const wchar_t kPrintingPageFooterCenter[]; | 89 extern const wchar_t kPrintingPageFooterCenter[]; |
| 90 extern const wchar_t kPrintingPageFooterRight[]; | 90 extern const wchar_t kPrintingPageFooterRight[]; |
| 91 extern const wchar_t kCurrentThemeID[]; | 91 extern const wchar_t kCurrentThemeID[]; |
| 92 extern const wchar_t kCurrentThemeImages[]; | 92 extern const wchar_t kCurrentThemeImages[]; |
| 93 extern const wchar_t kCurrentThemeColors[]; | 93 extern const wchar_t kCurrentThemeColors[]; |
| 94 extern const wchar_t kCurrentThemeTints[]; | 94 extern const wchar_t kCurrentThemeTints[]; |
| 95 extern const wchar_t kCurrentThemeDisplayProperties[]; |
| 95 extern const wchar_t kCheckDefaultBrowser[]; | 96 extern const wchar_t kCheckDefaultBrowser[]; |
| 96 | 97 |
| 97 // Local state | 98 // Local state |
| 98 extern const wchar_t kAvailableProfiles[]; | 99 extern const wchar_t kAvailableProfiles[]; |
| 99 | 100 |
| 100 extern const wchar_t kMetricsClientID[]; | 101 extern const wchar_t kMetricsClientID[]; |
| 101 extern const wchar_t kMetricsSessionID[]; | 102 extern const wchar_t kMetricsSessionID[]; |
| 102 extern const wchar_t kMetricsIsRecording[]; | 103 extern const wchar_t kMetricsIsRecording[]; |
| 103 extern const wchar_t kMetricsClientIDTimestamp[]; | 104 extern const wchar_t kMetricsClientIDTimestamp[]; |
| 104 extern const wchar_t kMetricsReportingEnabled[]; | 105 extern const wchar_t kMetricsReportingEnabled[]; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 | 186 |
| 186 extern const wchar_t kNumKeywords[]; | 187 extern const wchar_t kNumKeywords[]; |
| 187 | 188 |
| 188 extern const wchar_t kEnableExtensions[]; | 189 extern const wchar_t kEnableExtensions[]; |
| 189 extern const wchar_t kEnableUserScripts[]; | 190 extern const wchar_t kEnableUserScripts[]; |
| 190 | 191 |
| 191 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; | 192 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; |
| 192 } | 193 } |
| 193 | 194 |
| 194 #endif // CHROME_COMMON_PREF_NAMES_H_ | 195 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |