| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 extern const wchar_t kDeleteTimePeriod[]; | 94 extern const wchar_t kDeleteTimePeriod[]; |
| 95 extern const wchar_t kPrintingPageHeaderLeft[]; | 95 extern const wchar_t kPrintingPageHeaderLeft[]; |
| 96 extern const wchar_t kPrintingPageHeaderCenter[]; | 96 extern const wchar_t kPrintingPageHeaderCenter[]; |
| 97 extern const wchar_t kPrintingPageHeaderRight[]; | 97 extern const wchar_t kPrintingPageHeaderRight[]; |
| 98 extern const wchar_t kPrintingPageFooterLeft[]; | 98 extern const wchar_t kPrintingPageFooterLeft[]; |
| 99 extern const wchar_t kPrintingPageFooterCenter[]; | 99 extern const wchar_t kPrintingPageFooterCenter[]; |
| 100 extern const wchar_t kPrintingPageFooterRight[]; | 100 extern const wchar_t kPrintingPageFooterRight[]; |
| 101 #if defined(OS_LINUX) | 101 #if defined(OS_LINUX) |
| 102 extern const wchar_t kUsesSystemTheme[]; | 102 extern const wchar_t kUsesSystemTheme[]; |
| 103 #endif | 103 #endif |
| 104 extern const wchar_t kCurrentThemePackFilename[]; |
| 104 extern const wchar_t kCurrentThemeID[]; | 105 extern const wchar_t kCurrentThemeID[]; |
| 105 extern const wchar_t kCurrentThemeImages[]; | 106 extern const wchar_t kCurrentThemeImages[]; |
| 106 extern const wchar_t kCurrentThemeColors[]; | 107 extern const wchar_t kCurrentThemeColors[]; |
| 107 extern const wchar_t kCurrentThemeTints[]; | 108 extern const wchar_t kCurrentThemeTints[]; |
| 108 extern const wchar_t kCurrentThemeDisplayProperties[]; | 109 extern const wchar_t kCurrentThemeDisplayProperties[]; |
| 109 extern const wchar_t kExtensionsUIDeveloperMode[]; | 110 extern const wchar_t kExtensionsUIDeveloperMode[]; |
| 110 extern const wchar_t kCheckDefaultBrowser[]; | 111 extern const wchar_t kCheckDefaultBrowser[]; |
| 111 #if defined(OS_MACOSX) | 112 #if defined(OS_MACOSX) |
| 112 extern const wchar_t kShowUpdatePromotionInfoBar[]; | 113 extern const wchar_t kShowUpdatePromotionInfoBar[]; |
| 113 #endif | 114 #endif |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 extern const wchar_t kSyncLastSyncedTime[]; | 230 extern const wchar_t kSyncLastSyncedTime[]; |
| 230 extern const wchar_t kSyncHasSetupCompleted[]; | 231 extern const wchar_t kSyncHasSetupCompleted[]; |
| 231 | 232 |
| 232 extern const wchar_t kWebAppCreateOnDesktop[]; | 233 extern const wchar_t kWebAppCreateOnDesktop[]; |
| 233 extern const wchar_t kWebAppCreateInAppsMenu[]; | 234 extern const wchar_t kWebAppCreateInAppsMenu[]; |
| 234 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; | 235 extern const wchar_t kWebAppCreateInQuickLaunchBar[]; |
| 235 | 236 |
| 236 } // namespace prefs | 237 } // namespace prefs |
| 237 | 238 |
| 238 #endif // CHROME_COMMON_PREF_NAMES_H_ | 239 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |