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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 extern const wchar_t kStabilityPluginCrashes[]; | 105 extern const wchar_t kStabilityPluginCrashes[]; |
106 | 106 |
107 extern const wchar_t kStartRenderersManually[]; | 107 extern const wchar_t kStartRenderersManually[]; |
108 extern const wchar_t kBrowserWindowPlacement[]; | 108 extern const wchar_t kBrowserWindowPlacement[]; |
109 extern const wchar_t kTaskManagerWindowPlacement[]; | 109 extern const wchar_t kTaskManagerWindowPlacement[]; |
110 extern const wchar_t kPageInfoWindowPlacement[]; | 110 extern const wchar_t kPageInfoWindowPlacement[]; |
111 extern const wchar_t kMemoryCacheSize[]; | 111 extern const wchar_t kMemoryCacheSize[]; |
112 | 112 |
113 extern const wchar_t kDownloadDefaultDirectory[]; | 113 extern const wchar_t kDownloadDefaultDirectory[]; |
114 extern const wchar_t kDownloadExtensionsToOpen[]; | 114 extern const wchar_t kDownloadExtensionsToOpen[]; |
| 115 extern const wchar_t kDownloadDirUpgraded[]; |
115 | 116 |
116 extern const wchar_t kSaveFileDefaultDirectory[]; | 117 extern const wchar_t kSaveFileDefaultDirectory[]; |
117 | 118 |
118 extern const wchar_t kHungPluginDetectFrequency[]; | 119 extern const wchar_t kHungPluginDetectFrequency[]; |
119 extern const wchar_t kPluginMessageResponseTimeout[]; | 120 extern const wchar_t kPluginMessageResponseTimeout[]; |
120 | 121 |
121 extern const wchar_t kSpellCheckDictionary[]; | 122 extern const wchar_t kSpellCheckDictionary[]; |
122 | 123 |
123 extern const wchar_t kExcludedSchemes[]; | 124 extern const wchar_t kExcludedSchemes[]; |
124 | 125 |
(...skipping 15 matching lines...) Expand all Loading... |
140 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 141 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
141 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 142 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
142 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 143 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
143 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 144 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
144 | 145 |
145 extern const wchar_t kNumKeywords[]; | 146 extern const wchar_t kNumKeywords[]; |
146 } | 147 } |
147 | 148 |
148 #endif // CHROME_COMMON_PREF_NAMES_H_ | 149 #endif // CHROME_COMMON_PREF_NAMES_H_ |
149 | 150 |
OLD | NEW |