| OLD | NEW |
| 1 // Copyright (c) 2006-2008 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 { |
| 11 | 11 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 extern const wchar_t kDeleteFormData[]; | 74 extern const wchar_t kDeleteFormData[]; |
| 75 extern const wchar_t kBookmarkTableNameWidth1[]; | 75 extern const wchar_t kBookmarkTableNameWidth1[]; |
| 76 extern const wchar_t kBookmarkTableURLWidth1[]; | 76 extern const wchar_t kBookmarkTableURLWidth1[]; |
| 77 extern const wchar_t kBookmarkTableNameWidth2[]; | 77 extern const wchar_t kBookmarkTableNameWidth2[]; |
| 78 extern const wchar_t kBookmarkTableURLWidth2[]; | 78 extern const wchar_t kBookmarkTableURLWidth2[]; |
| 79 extern const wchar_t kBookmarkTablePathWidth[]; | 79 extern const wchar_t kBookmarkTablePathWidth[]; |
| 80 extern const wchar_t kBookmarkManagerPlacement[]; | 80 extern const wchar_t kBookmarkManagerPlacement[]; |
| 81 extern const wchar_t kBookmarkManagerSplitLocation[]; | 81 extern const wchar_t kBookmarkManagerSplitLocation[]; |
| 82 extern const wchar_t kEnableSpellCheck[]; | 82 extern const wchar_t kEnableSpellCheck[]; |
| 83 extern const wchar_t kDeleteTimePeriod[]; | 83 extern const wchar_t kDeleteTimePeriod[]; |
| 84 | 84 extern const wchar_t kPrintingPageHeaderLeft[]; |
| 85 extern const wchar_t kPrintingPageHeaderCenter[]; |
| 86 extern const wchar_t kPrintingPageHeaderRight[]; |
| 87 extern const wchar_t kPrintingPageFooterLeft[]; |
| 88 extern const wchar_t kPrintingPageFooterCenter[]; |
| 89 extern const wchar_t kPrintingPageFooterRight[]; |
| 85 // Local state | 90 // Local state |
| 86 extern const wchar_t kAvailableProfiles[]; | 91 extern const wchar_t kAvailableProfiles[]; |
| 87 | 92 |
| 88 extern const wchar_t kMetricsClientID[]; | 93 extern const wchar_t kMetricsClientID[]; |
| 89 extern const wchar_t kMetricsSessionID[]; | 94 extern const wchar_t kMetricsSessionID[]; |
| 90 extern const wchar_t kMetricsIsRecording[]; | 95 extern const wchar_t kMetricsIsRecording[]; |
| 91 extern const wchar_t kMetricsClientIDTimestamp[]; | 96 extern const wchar_t kMetricsClientIDTimestamp[]; |
| 92 extern const wchar_t kMetricsReportingEnabled[]; | 97 extern const wchar_t kMetricsReportingEnabled[]; |
| 93 extern const wchar_t kMetricsInitialLogs[]; | 98 extern const wchar_t kMetricsInitialLogs[]; |
| 94 extern const wchar_t kMetricsOngoingLogs[]; | 99 extern const wchar_t kMetricsOngoingLogs[]; |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 174 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 170 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 175 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 171 | 176 |
| 172 extern const wchar_t kNumKeywords[]; | 177 extern const wchar_t kNumKeywords[]; |
| 173 | 178 |
| 174 extern const wchar_t kEnableExtensions[]; | 179 extern const wchar_t kEnableExtensions[]; |
| 175 extern const wchar_t kEnableUserScripts[]; | 180 extern const wchar_t kEnableUserScripts[]; |
| 176 } | 181 } |
| 177 | 182 |
| 178 #endif // CHROME_COMMON_PREF_NAMES_H_ | 183 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |