| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 extern const char kCurrentThemeDisplayProperties[]; | 352 extern const char kCurrentThemeDisplayProperties[]; |
| 353 extern const char kExtensionsUIDeveloperMode[]; | 353 extern const char kExtensionsUIDeveloperMode[]; |
| 354 extern const char kExtensionToolbarSize[]; | 354 extern const char kExtensionToolbarSize[]; |
| 355 extern const char kExtensionToolbar[]; | 355 extern const char kExtensionToolbar[]; |
| 356 extern const char kExtensionCommands[]; | 356 extern const char kExtensionCommands[]; |
| 357 extern const char kPluginsLastInternalDirectory[]; | 357 extern const char kPluginsLastInternalDirectory[]; |
| 358 extern const char kPluginsPluginsList[]; | 358 extern const char kPluginsPluginsList[]; |
| 359 extern const char kPluginsDisabledPlugins[]; | 359 extern const char kPluginsDisabledPlugins[]; |
| 360 extern const char kPluginsDisabledPluginsExceptions[]; | 360 extern const char kPluginsDisabledPluginsExceptions[]; |
| 361 extern const char kPluginsEnabledPlugins[]; | 361 extern const char kPluginsEnabledPlugins[]; |
| 362 extern const char kPluginsEnabledNaCl[]; | |
| 363 extern const char kPluginsMigratedToPepperFlash[]; | 362 extern const char kPluginsMigratedToPepperFlash[]; |
| 364 extern const char kPluginsRemovedOldComponentPepperFlashSettings[]; | 363 extern const char kPluginsRemovedOldComponentPepperFlashSettings[]; |
| 365 extern const char kPluginsShowDetails[]; | 364 extern const char kPluginsShowDetails[]; |
| 366 extern const char kPluginsAllowOutdated[]; | 365 extern const char kPluginsAllowOutdated[]; |
| 367 extern const char kPluginsAlwaysAuthorize[]; | 366 extern const char kPluginsAlwaysAuthorize[]; |
| 368 #if defined(ENABLE_PLUGIN_INSTALLATION) | 367 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 369 extern const char kPluginsMetadata[]; | 368 extern const char kPluginsMetadata[]; |
| 370 extern const char kPluginsResourceCacheUpdate[]; | 369 extern const char kPluginsResourceCacheUpdate[]; |
| 371 #endif | 370 #endif |
| 372 extern const char kCheckDefaultBrowser[]; | 371 extern const char kCheckDefaultBrowser[]; |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 931 extern const char kAppListAppLaunchCount[]; | 930 extern const char kAppListAppLaunchCount[]; |
| 932 | 931 |
| 933 extern const char kModuleConflictBubbleShown[]; | 932 extern const char kModuleConflictBubbleShown[]; |
| 934 | 933 |
| 935 extern const char kDRMSalt[]; | 934 extern const char kDRMSalt[]; |
| 936 extern const char kEnableDRM[]; | 935 extern const char kEnableDRM[]; |
| 937 | 936 |
| 938 } // namespace prefs | 937 } // namespace prefs |
| 939 | 938 |
| 940 #endif // CHROME_COMMON_PREF_NAMES_H_ | 939 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |