| 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 18 matching lines...) Expand all Loading... |
| 29 extern const wchar_t kWebKitFixedFontFamily[]; | 29 extern const wchar_t kWebKitFixedFontFamily[]; |
| 30 extern const wchar_t kWebKitSerifFontFamily[]; | 30 extern const wchar_t kWebKitSerifFontFamily[]; |
| 31 extern const wchar_t kWebKitSansSerifFontFamily[]; | 31 extern const wchar_t kWebKitSansSerifFontFamily[]; |
| 32 extern const wchar_t kWebKitCursiveFontFamily[]; | 32 extern const wchar_t kWebKitCursiveFontFamily[]; |
| 33 extern const wchar_t kWebKitFantasyFontFamily[]; | 33 extern const wchar_t kWebKitFantasyFontFamily[]; |
| 34 extern const wchar_t kWebKitDefaultFontSize[]; | 34 extern const wchar_t kWebKitDefaultFontSize[]; |
| 35 extern const wchar_t kWebKitDefaultFixedFontSize[]; | 35 extern const wchar_t kWebKitDefaultFixedFontSize[]; |
| 36 extern const wchar_t kWebKitMinimumFontSize[]; | 36 extern const wchar_t kWebKitMinimumFontSize[]; |
| 37 extern const wchar_t kWebKitMinimumLogicalFontSize[]; | 37 extern const wchar_t kWebKitMinimumLogicalFontSize[]; |
| 38 extern const wchar_t kWebKitJavascriptEnabled[]; | 38 extern const wchar_t kWebKitJavascriptEnabled[]; |
| 39 extern const wchar_t kWebKitWebSecurityEnabled[]; |
| 39 extern const wchar_t kWebKitJavascriptCanOpenWindowsAutomatically[]; | 40 extern const wchar_t kWebKitJavascriptCanOpenWindowsAutomatically[]; |
| 40 extern const wchar_t kWebKitLoadsImagesAutomatically[]; | 41 extern const wchar_t kWebKitLoadsImagesAutomatically[]; |
| 41 extern const wchar_t kWebKitPluginsEnabled[]; | 42 extern const wchar_t kWebKitPluginsEnabled[]; |
| 42 extern const wchar_t kWebKitDomPasteEnabled[]; | 43 extern const wchar_t kWebKitDomPasteEnabled[]; |
| 43 extern const wchar_t kWebKitShrinksStandaloneImagesToFit[]; | 44 extern const wchar_t kWebKitShrinksStandaloneImagesToFit[]; |
| 44 extern const wchar_t kWebKitDeveloperExtrasEnabled[]; | 45 extern const wchar_t kWebKitDeveloperExtrasEnabled[]; |
| 45 extern const wchar_t kWebKitUsesUniversalDetector[]; | 46 extern const wchar_t kWebKitUsesUniversalDetector[]; |
| 46 extern const wchar_t kWebKitTextAreasAreResizable[]; | 47 extern const wchar_t kWebKitTextAreasAreResizable[]; |
| 47 extern const wchar_t kWebKitJavaEnabled[]; | 48 extern const wchar_t kWebKitJavaEnabled[]; |
| 48 extern const wchar_t kAlwaysCreateDestinationsTab[]; | 49 extern const wchar_t kAlwaysCreateDestinationsTab[]; |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 | 158 |
| 158 extern const wchar_t kNumBookmarksOnBookmarkBar[]; | 159 extern const wchar_t kNumBookmarksOnBookmarkBar[]; |
| 159 extern const wchar_t kNumFoldersOnBookmarkBar[]; | 160 extern const wchar_t kNumFoldersOnBookmarkBar[]; |
| 160 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; | 161 extern const wchar_t kNumBookmarksInOtherBookmarkFolder[]; |
| 161 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; | 162 extern const wchar_t kNumFoldersInOtherBookmarkFolder[]; |
| 162 | 163 |
| 163 extern const wchar_t kNumKeywords[]; | 164 extern const wchar_t kNumKeywords[]; |
| 164 } | 165 } |
| 165 | 166 |
| 166 #endif // CHROME_COMMON_PREF_NAMES_H_ | 167 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |