| 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 { |
| 11 | 11 |
| 12 // Profile prefs | 12 // Profile prefs |
| 13 extern const wchar_t kHomePageIsNewTabPage[]; | 13 extern const wchar_t kHomePageIsNewTabPage[]; |
| 14 extern const wchar_t kHomePage[]; | 14 extern const wchar_t kHomePage[]; |
| 15 extern const wchar_t kProfileName[]; | 15 extern const wchar_t kProfileName[]; |
| 16 extern const wchar_t kProfileNickname[]; | 16 extern const wchar_t kProfileNickname[]; |
| 17 extern const wchar_t kProfileID[]; | 17 extern const wchar_t kProfileID[]; |
| 18 extern const wchar_t kRecentlyViewedModelBiasActiveTabHistory[]; | 18 extern const wchar_t kRecentlyViewedModelBiasActiveTabHistory[]; |
| 19 extern const wchar_t kRecentlyViewedModelSelectionMode[]; | 19 extern const wchar_t kRecentlyViewedModelSelectionMode[]; |
| 20 extern const wchar_t kSessionExitedCleanly[]; | 20 extern const wchar_t kSessionExitedCleanly[]; |
| 21 extern const wchar_t kRestoreOnStartup[]; | 21 extern const wchar_t kRestoreOnStartup[]; |
| 22 extern const wchar_t kURLsToRestoreOnStartup[]; | 22 extern const wchar_t kURLsToRestoreOnStartup[]; |
| 23 extern const wchar_t kApplicationLocale[]; | 23 extern const wchar_t kApplicationLocale[]; |
| 24 extern const wchar_t kDefaultCharset[]; | 24 extern const wchar_t kDefaultCharset[]; |
| 25 extern const wchar_t kAcceptLanguages[]; | 25 extern const wchar_t kAcceptLanguages[]; |
| 26 extern const wchar_t kStaticEncodings[]; | 26 extern const wchar_t kStaticEncodings[]; |
| 27 extern const wchar_t kPopupWhitelistedHosts[]; |
| 27 extern const wchar_t kShowBookmarkBar[]; | 28 extern const wchar_t kShowBookmarkBar[]; |
| 28 extern const wchar_t kWebKitStandardFontIsSerif[]; | 29 extern const wchar_t kWebKitStandardFontIsSerif[]; |
| 29 extern const wchar_t kWebKitFixedFontFamily[]; | 30 extern const wchar_t kWebKitFixedFontFamily[]; |
| 30 extern const wchar_t kWebKitSerifFontFamily[]; | 31 extern const wchar_t kWebKitSerifFontFamily[]; |
| 31 extern const wchar_t kWebKitSansSerifFontFamily[]; | 32 extern const wchar_t kWebKitSansSerifFontFamily[]; |
| 32 extern const wchar_t kWebKitCursiveFontFamily[]; | 33 extern const wchar_t kWebKitCursiveFontFamily[]; |
| 33 extern const wchar_t kWebKitFantasyFontFamily[]; | 34 extern const wchar_t kWebKitFantasyFontFamily[]; |
| 34 extern const wchar_t kWebKitDefaultFontSize[]; | 35 extern const wchar_t kWebKitDefaultFontSize[]; |
| 35 extern const wchar_t kWebKitDefaultFixedFontSize[]; | 36 extern const wchar_t kWebKitDefaultFixedFontSize[]; |
| 36 extern const wchar_t kWebKitMinimumFontSize[]; | 37 extern const wchar_t kWebKitMinimumFontSize[]; |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 180 |
| 180 extern const wchar_t kNumKeywords[]; | 181 extern const wchar_t kNumKeywords[]; |
| 181 | 182 |
| 182 extern const wchar_t kEnableExtensions[]; | 183 extern const wchar_t kEnableExtensions[]; |
| 183 extern const wchar_t kEnableUserScripts[]; | 184 extern const wchar_t kEnableUserScripts[]; |
| 184 | 185 |
| 185 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; | 186 extern const wchar_t kNTPMostVisitedURLsBlacklist[]; |
| 186 } | 187 } |
| 187 | 188 |
| 188 #endif // CHROME_COMMON_PREF_NAMES_H_ | 189 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |