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 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
328 extern const char kPluginsPluginsList[]; | 328 extern const char kPluginsPluginsList[]; |
329 extern const char kPluginsDisabledPlugins[]; | 329 extern const char kPluginsDisabledPlugins[]; |
330 extern const char kPluginsDisabledPluginsExceptions[]; | 330 extern const char kPluginsDisabledPluginsExceptions[]; |
331 extern const char kPluginsEnabledPlugins[]; | 331 extern const char kPluginsEnabledPlugins[]; |
332 extern const char kPluginsAlwaysOpenPdfExternally[]; | 332 extern const char kPluginsAlwaysOpenPdfExternally[]; |
333 #if defined(ENABLE_PLUGINS) | 333 #if defined(ENABLE_PLUGINS) |
334 extern const char kPluginsShowDetails[]; | 334 extern const char kPluginsShowDetails[]; |
335 #endif | 335 #endif |
336 extern const char kPluginsAllowOutdated[]; | 336 extern const char kPluginsAllowOutdated[]; |
337 extern const char kPluginsAlwaysAuthorize[]; | 337 extern const char kPluginsAlwaysAuthorize[]; |
338 #if defined(ENABLE_PLUGIN_INSTALLATION) | 338 #if BUILDFLAG(ENABLE_PLUGIN_INSTALLATION) |
339 extern const char kPluginsMetadata[]; | 339 extern const char kPluginsMetadata[]; |
340 extern const char kPluginsResourceCacheUpdate[]; | 340 extern const char kPluginsResourceCacheUpdate[]; |
341 #endif | 341 #endif |
342 extern const char kDefaultBrowserLastDeclined[]; | 342 extern const char kDefaultBrowserLastDeclined[]; |
343 extern const char kResetCheckDefaultBrowser[]; | 343 extern const char kResetCheckDefaultBrowser[]; |
344 extern const char kDefaultBrowserSettingEnabled[]; | 344 extern const char kDefaultBrowserSettingEnabled[]; |
345 #if defined(OS_MACOSX) | 345 #if defined(OS_MACOSX) |
346 extern const char kShowUpdatePromotionInfoBar[]; | 346 extern const char kShowUpdatePromotionInfoBar[]; |
347 #endif | 347 #endif |
348 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 348 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 #endif | 830 #endif |
831 | 831 |
832 extern const char kOriginTrialPublicKey[]; | 832 extern const char kOriginTrialPublicKey[]; |
833 extern const char kOriginTrialDisabledFeatures[]; | 833 extern const char kOriginTrialDisabledFeatures[]; |
834 | 834 |
835 extern const char kComponentUpdatesEnabled[]; | 835 extern const char kComponentUpdatesEnabled[]; |
836 | 836 |
837 } // namespace prefs | 837 } // namespace prefs |
838 | 838 |
839 #endif // CHROME_COMMON_PREF_NAMES_H_ | 839 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |