| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 extern const wchar_t kDefaultSearchProviderName[]; | 56 extern const wchar_t kDefaultSearchProviderName[]; |
| 57 extern const wchar_t kDefaultSearchProviderID[]; | 57 extern const wchar_t kDefaultSearchProviderID[]; |
| 58 extern const wchar_t kBlockPopups[]; | 58 extern const wchar_t kBlockPopups[]; |
| 59 extern const wchar_t kPromptForDownload[]; | 59 extern const wchar_t kPromptForDownload[]; |
| 60 extern const wchar_t kAlternateErrorPagesEnabled[]; | 60 extern const wchar_t kAlternateErrorPagesEnabled[]; |
| 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[]; |
| 67 extern const wchar_t kDeleteDownloadHistory[]; |
| 68 extern const wchar_t kDeleteCache[]; |
| 69 extern const wchar_t kDeleteCookies[]; |
| 70 extern const wchar_t kDeletePasswords[]; |
| 66 | 71 |
| 67 // Local state | 72 // Local state |
| 68 extern const wchar_t kAvailableProfiles[]; | 73 extern const wchar_t kAvailableProfiles[]; |
| 69 | 74 |
| 70 extern const wchar_t kMetricsClientID[]; | 75 extern const wchar_t kMetricsClientID[]; |
| 71 extern const wchar_t kMetricsSessionID[]; | 76 extern const wchar_t kMetricsSessionID[]; |
| 72 extern const wchar_t kMetricsIsRecording[]; | 77 extern const wchar_t kMetricsIsRecording[]; |
| 73 extern const wchar_t kMetricsClientIDTimestamp[]; | 78 extern const wchar_t kMetricsClientIDTimestamp[]; |
| 74 extern const wchar_t kMetricsReportingEnabled[]; | 79 extern const wchar_t kMetricsReportingEnabled[]; |
| 75 extern const wchar_t kMetricsInitialLogs[]; | 80 extern const wchar_t kMetricsInitialLogs[]; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 146 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
| 142 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 147 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
| 143 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 148 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 144 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 149 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 145 | 150 |
| 146 extern const wchar_t kNumKeywords[]; | 151 extern const wchar_t kNumKeywords[]; |
| 147 } | 152 } |
| 148 | 153 |
| 149 #endif // CHROME_COMMON_PREF_NAMES_H_ | 154 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| 150 | 155 |
| OLD | NEW |