| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 extern const wchar_t kDnsPrefetchingEnabled[]; | 61 extern const wchar_t kDnsPrefetchingEnabled[]; |
| 62 extern const wchar_t kDnsStartupPrefetchList[]; | 62 extern const wchar_t kDnsStartupPrefetchList[]; |
| 63 extern const wchar_t kIpcDisabledMessages[]; | 63 extern const wchar_t kIpcDisabledMessages[]; |
| 64 extern const wchar_t kShowHomeButton[]; | 64 extern const wchar_t kShowHomeButton[]; |
| 65 extern const wchar_t kRecentlySelectedEncoding[]; | 65 extern const wchar_t kRecentlySelectedEncoding[]; |
| 66 extern const wchar_t kDeleteBrowsingHistory[]; | 66 extern const wchar_t kDeleteBrowsingHistory[]; |
| 67 extern const wchar_t kDeleteDownloadHistory[]; | 67 extern const wchar_t kDeleteDownloadHistory[]; |
| 68 extern const wchar_t kDeleteCache[]; | 68 extern const wchar_t kDeleteCache[]; |
| 69 extern const wchar_t kDeleteCookies[]; | 69 extern const wchar_t kDeleteCookies[]; |
| 70 extern const wchar_t kDeletePasswords[]; | 70 extern const wchar_t kDeletePasswords[]; |
| 71 extern const wchar_t kDeleteTimePeriod[]; |
| 71 | 72 |
| 72 // Local state | 73 // Local state |
| 73 extern const wchar_t kAvailableProfiles[]; | 74 extern const wchar_t kAvailableProfiles[]; |
| 74 | 75 |
| 75 extern const wchar_t kMetricsClientID[]; | 76 extern const wchar_t kMetricsClientID[]; |
| 76 extern const wchar_t kMetricsSessionID[]; | 77 extern const wchar_t kMetricsSessionID[]; |
| 77 extern const wchar_t kMetricsIsRecording[]; | 78 extern const wchar_t kMetricsIsRecording[]; |
| 78 extern const wchar_t kMetricsClientIDTimestamp[]; | 79 extern const wchar_t kMetricsClientIDTimestamp[]; |
| 79 extern const wchar_t kMetricsReportingEnabled[]; | 80 extern const wchar_t kMetricsReportingEnabled[]; |
| 80 extern const wchar_t kMetricsInitialLogs[]; | 81 extern const wchar_t kMetricsInitialLogs[]; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 147 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
| 147 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 148 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
| 148 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 149 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 149 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 150 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 150 | 151 |
| 151 extern const wchar_t kNumKeywords[]; | 152 extern const wchar_t kNumKeywords[]; |
| 152 } | 153 } |
| 153 | 154 |
| 154 #endif // CHROME_COMMON_PREF_NAMES_H_ | 155 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| 155 | 156 |
| OLD | NEW |