| 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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 extern const char kExtensionCommands[]; | 322 extern const char kExtensionCommands[]; |
| 323 extern const char kExtensionsSideloadWipeoutBubbleShown[]; | 323 extern const char kExtensionsSideloadWipeoutBubbleShown[]; |
| 324 extern const char kPluginsLastInternalDirectory[]; | 324 extern const char kPluginsLastInternalDirectory[]; |
| 325 extern const char kPluginsPluginsList[]; | 325 extern const char kPluginsPluginsList[]; |
| 326 extern const char kPluginsDisabledPlugins[]; | 326 extern const char kPluginsDisabledPlugins[]; |
| 327 extern const char kPluginsDisabledPluginsExceptions[]; | 327 extern const char kPluginsDisabledPluginsExceptions[]; |
| 328 extern const char kPluginsEnabledPlugins[]; | 328 extern const char kPluginsEnabledPlugins[]; |
| 329 extern const char kPluginsEnabledInternalPDF[]; | 329 extern const char kPluginsEnabledInternalPDF[]; |
| 330 extern const char kPluginsEnabledNaCl[]; | 330 extern const char kPluginsEnabledNaCl[]; |
| 331 extern const char kPluginsMigratedToPepperFlash[]; | 331 extern const char kPluginsMigratedToPepperFlash[]; |
| 332 extern const char kPluginsRemovedOldComponentPepperFlashSettings[]; |
| 332 extern const char kPluginsShowDetails[]; | 333 extern const char kPluginsShowDetails[]; |
| 333 extern const char kPluginsAllowOutdated[]; | 334 extern const char kPluginsAllowOutdated[]; |
| 334 extern const char kPluginsAlwaysAuthorize[]; | 335 extern const char kPluginsAlwaysAuthorize[]; |
| 335 #if defined(ENABLE_PLUGIN_INSTALLATION) | 336 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 336 extern const char kPluginsMetadata[]; | 337 extern const char kPluginsMetadata[]; |
| 337 extern const char kPluginsResourceCacheUpdate[]; | 338 extern const char kPluginsResourceCacheUpdate[]; |
| 338 #endif | 339 #endif |
| 339 extern const char kCheckDefaultBrowser[]; | 340 extern const char kCheckDefaultBrowser[]; |
| 340 #if defined(OS_WIN) | 341 #if defined(OS_WIN) |
| 341 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; | 342 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 extern const char kLastPolicyStatisticsUpdate[]; | 812 extern const char kLastPolicyStatisticsUpdate[]; |
| 812 | 813 |
| 813 #if defined(OS_CHROMEOS) | 814 #if defined(OS_CHROMEOS) |
| 814 extern const char kRLZBrand[]; | 815 extern const char kRLZBrand[]; |
| 815 extern const char kRLZDisabled[]; | 816 extern const char kRLZDisabled[]; |
| 816 #endif | 817 #endif |
| 817 | 818 |
| 818 } // namespace prefs | 819 } // namespace prefs |
| 819 | 820 |
| 820 #endif // CHROME_COMMON_PREF_NAMES_H_ | 821 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |