| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 extern const char kExtensionsUIDeveloperMode[]; | 299 extern const char kExtensionsUIDeveloperMode[]; |
| 300 extern const char kExtensionToolbarSize[]; | 300 extern const char kExtensionToolbarSize[]; |
| 301 extern const char kExtensionCommands[]; | 301 extern const char kExtensionCommands[]; |
| 302 extern const char kPluginsLastInternalDirectory[]; | 302 extern const char kPluginsLastInternalDirectory[]; |
| 303 extern const char kPluginsPluginsList[]; | 303 extern const char kPluginsPluginsList[]; |
| 304 extern const char kPluginsDisabledPlugins[]; | 304 extern const char kPluginsDisabledPlugins[]; |
| 305 extern const char kPluginsDisabledPluginsExceptions[]; | 305 extern const char kPluginsDisabledPluginsExceptions[]; |
| 306 extern const char kPluginsEnabledPlugins[]; | 306 extern const char kPluginsEnabledPlugins[]; |
| 307 extern const char kPluginsEnabledInternalPDF[]; | 307 extern const char kPluginsEnabledInternalPDF[]; |
| 308 extern const char kPluginsEnabledNaCl[]; | 308 extern const char kPluginsEnabledNaCl[]; |
| 309 extern const char kPluginsMigratedToPepperFlash[]; |
| 309 extern const char kPluginsShowSetReaderDefaultInfobar[]; | 310 extern const char kPluginsShowSetReaderDefaultInfobar[]; |
| 310 extern const char kPluginsShowDetails[]; | 311 extern const char kPluginsShowDetails[]; |
| 311 extern const char kPluginsAllowOutdated[]; | 312 extern const char kPluginsAllowOutdated[]; |
| 312 extern const char kPluginsAlwaysAuthorize[]; | 313 extern const char kPluginsAlwaysAuthorize[]; |
| 313 extern const char kCheckDefaultBrowser[]; | 314 extern const char kCheckDefaultBrowser[]; |
| 314 #if defined(OS_WIN) | 315 #if defined(OS_WIN) |
| 315 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; | 316 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; |
| 316 #endif | 317 #endif |
| 317 extern const char kDefaultBrowserSettingEnabled[]; | 318 extern const char kDefaultBrowserSettingEnabled[]; |
| 318 #if defined(OS_MACOSX) | 319 #if defined(OS_MACOSX) |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 #endif | 736 #endif |
| 736 | 737 |
| 737 extern const char kInManagedMode[]; | 738 extern const char kInManagedMode[]; |
| 738 | 739 |
| 739 extern const char kNetworkProfileWarningsLeft[]; | 740 extern const char kNetworkProfileWarningsLeft[]; |
| 740 extern const char kNetworkProfileLastWarningTime[]; | 741 extern const char kNetworkProfileLastWarningTime[]; |
| 741 | 742 |
| 742 } // namespace prefs | 743 } // namespace prefs |
| 743 | 744 |
| 744 #endif // CHROME_COMMON_PREF_NAMES_H_ | 745 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |