| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 extern const wchar_t kCurrentThemePackFilename[]; | 124 extern const wchar_t kCurrentThemePackFilename[]; |
| 125 extern const wchar_t kCurrentThemeID[]; | 125 extern const wchar_t kCurrentThemeID[]; |
| 126 extern const wchar_t kCurrentThemeImages[]; | 126 extern const wchar_t kCurrentThemeImages[]; |
| 127 extern const wchar_t kCurrentThemeColors[]; | 127 extern const wchar_t kCurrentThemeColors[]; |
| 128 extern const wchar_t kCurrentThemeTints[]; | 128 extern const wchar_t kCurrentThemeTints[]; |
| 129 extern const wchar_t kCurrentThemeDisplayProperties[]; | 129 extern const wchar_t kCurrentThemeDisplayProperties[]; |
| 130 extern const wchar_t kExtensionsUIDeveloperMode[]; | 130 extern const wchar_t kExtensionsUIDeveloperMode[]; |
| 131 extern const wchar_t kExtensionToolbarSize[]; | 131 extern const wchar_t kExtensionToolbarSize[]; |
| 132 extern const wchar_t kPluginsLastInternalDirectory[]; | 132 extern const wchar_t kPluginsLastInternalDirectory[]; |
| 133 extern const wchar_t kPluginsPluginsList[]; | 133 extern const wchar_t kPluginsPluginsList[]; |
| 134 extern const wchar_t kPluginsEnabledInternalPDF[]; |
| 134 extern const wchar_t kCheckDefaultBrowser[]; | 135 extern const wchar_t kCheckDefaultBrowser[]; |
| 135 #if defined(OS_MACOSX) | 136 #if defined(OS_MACOSX) |
| 136 extern const wchar_t kShowUpdatePromotionInfoBar[]; | 137 extern const wchar_t kShowUpdatePromotionInfoBar[]; |
| 137 #endif | 138 #endif |
| 138 extern const wchar_t kUseCustomChromeFrame[]; | 139 extern const wchar_t kUseCustomChromeFrame[]; |
| 139 extern const wchar_t kShowOmniboxSearchHint[]; | 140 extern const wchar_t kShowOmniboxSearchHint[]; |
| 140 extern const wchar_t kNTPPromoLineRemaining[]; | 141 extern const wchar_t kNTPPromoLineRemaining[]; |
| 141 extern const wchar_t kNTPPromoImageRemaining[]; | 142 extern const wchar_t kNTPPromoImageRemaining[]; |
| 142 extern const wchar_t kDesktopNotificationAllowedOrigins[]; | 143 extern const wchar_t kDesktopNotificationAllowedOrigins[]; |
| 143 extern const wchar_t kDesktopNotificationDeniedOrigins[]; | 144 extern const wchar_t kDesktopNotificationDeniedOrigins[]; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 extern const wchar_t kLoginDatabaseMigrated[]; | 296 extern const wchar_t kLoginDatabaseMigrated[]; |
| 296 | 297 |
| 297 extern const wchar_t kCloudPrintServiceURL[]; | 298 extern const wchar_t kCloudPrintServiceURL[]; |
| 298 extern const wchar_t kCloudPrintProxyId[]; | 299 extern const wchar_t kCloudPrintProxyId[]; |
| 299 extern const wchar_t kCloudPrintProxyName[]; | 300 extern const wchar_t kCloudPrintProxyName[]; |
| 300 extern const wchar_t kCloudPrintAuthToken[]; | 301 extern const wchar_t kCloudPrintAuthToken[]; |
| 301 | 302 |
| 302 } // namespace prefs | 303 } // namespace prefs |
| 303 | 304 |
| 304 #endif // CHROME_COMMON_PREF_NAMES_H_ | 305 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |