| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 <stddef.h> | 10 #include <stddef.h> |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 extern const char kUsesSystemTheme[]; | 289 extern const char kUsesSystemTheme[]; |
| 290 #endif | 290 #endif |
| 291 extern const char kCurrentThemePackFilename[]; | 291 extern const char kCurrentThemePackFilename[]; |
| 292 extern const char kCurrentThemeID[]; | 292 extern const char kCurrentThemeID[]; |
| 293 extern const char kCurrentThemeImages[]; | 293 extern const char kCurrentThemeImages[]; |
| 294 extern const char kCurrentThemeColors[]; | 294 extern const char kCurrentThemeColors[]; |
| 295 extern const char kCurrentThemeTints[]; | 295 extern const char kCurrentThemeTints[]; |
| 296 extern const char kCurrentThemeDisplayProperties[]; | 296 extern const char kCurrentThemeDisplayProperties[]; |
| 297 extern const char kExtensionsUIDeveloperMode[]; | 297 extern const char kExtensionsUIDeveloperMode[]; |
| 298 extern const char kExtensionToolbarSize[]; | 298 extern const char kExtensionToolbarSize[]; |
| 299 extern const char kExtensionKeybindings[]; | 299 extern const char kExtensionCommands[]; |
| 300 extern const char kPluginsLastInternalDirectory[]; | 300 extern const char kPluginsLastInternalDirectory[]; |
| 301 extern const char kPluginsPluginsList[]; | 301 extern const char kPluginsPluginsList[]; |
| 302 extern const char kPluginsDisabledPlugins[]; | 302 extern const char kPluginsDisabledPlugins[]; |
| 303 extern const char kPluginsDisabledPluginsExceptions[]; | 303 extern const char kPluginsDisabledPluginsExceptions[]; |
| 304 extern const char kPluginsEnabledPlugins[]; | 304 extern const char kPluginsEnabledPlugins[]; |
| 305 extern const char kPluginsEnabledInternalPDF[]; | 305 extern const char kPluginsEnabledInternalPDF[]; |
| 306 extern const char kPluginsEnabledNaCl[]; | 306 extern const char kPluginsEnabledNaCl[]; |
| 307 extern const char kPluginsShowSetReaderDefaultInfobar[]; | 307 extern const char kPluginsShowSetReaderDefaultInfobar[]; |
| 308 extern const char kPluginsShowDetails[]; | 308 extern const char kPluginsShowDetails[]; |
| 309 extern const char kPluginsAllowOutdated[]; | 309 extern const char kPluginsAllowOutdated[]; |
| (...skipping 441 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 751 extern const char kNetworkProfileWarningsLeft[]; | 751 extern const char kNetworkProfileWarningsLeft[]; |
| 752 extern const char kNetworkProfileLastWarningTime[]; | 752 extern const char kNetworkProfileLastWarningTime[]; |
| 753 | 753 |
| 754 #if defined(OS_MACOSX) | 754 #if defined(OS_MACOSX) |
| 755 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 755 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
| 756 #endif // defined(OS_MACOSX) | 756 #endif // defined(OS_MACOSX) |
| 757 | 757 |
| 758 } // namespace prefs | 758 } // namespace prefs |
| 759 | 759 |
| 760 #endif // CHROME_COMMON_PREF_NAMES_H_ | 760 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |