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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 extern const char kPluginsMigratedToPepperFlash[]; | 320 extern const char kPluginsMigratedToPepperFlash[]; |
321 extern const char kPluginsRemovedOldComponentPepperFlashSettings[]; | 321 extern const char kPluginsRemovedOldComponentPepperFlashSettings[]; |
322 extern const char kPluginsShowDetails[]; | 322 extern const char kPluginsShowDetails[]; |
323 extern const char kPluginsAllowOutdated[]; | 323 extern const char kPluginsAllowOutdated[]; |
324 extern const char kPluginsAlwaysAuthorize[]; | 324 extern const char kPluginsAlwaysAuthorize[]; |
325 #if defined(ENABLE_PLUGIN_INSTALLATION) | 325 #if defined(ENABLE_PLUGIN_INSTALLATION) |
326 extern const char kPluginsMetadata[]; | 326 extern const char kPluginsMetadata[]; |
327 extern const char kPluginsResourceCacheUpdate[]; | 327 extern const char kPluginsResourceCacheUpdate[]; |
328 #endif | 328 #endif |
329 extern const char kCheckDefaultBrowser[]; | 329 extern const char kCheckDefaultBrowser[]; |
330 #if defined(OS_WIN) | |
331 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; | |
332 #endif | |
333 extern const char kDefaultBrowserSettingEnabled[]; | 330 extern const char kDefaultBrowserSettingEnabled[]; |
334 #if defined(OS_MACOSX) | 331 #if defined(OS_MACOSX) |
335 extern const char kShowUpdatePromotionInfoBar[]; | 332 extern const char kShowUpdatePromotionInfoBar[]; |
336 #endif | 333 #endif |
337 extern const char kUseCustomChromeFrame[]; | 334 extern const char kUseCustomChromeFrame[]; |
338 extern const char kDefaultContentSettings[]; | 335 extern const char kDefaultContentSettings[]; |
339 extern const char kContentSettingsClearOnExitMigrated[]; | 336 extern const char kContentSettingsClearOnExitMigrated[]; |
340 extern const char kContentSettingsVersion[]; | 337 extern const char kContentSettingsVersion[]; |
341 extern const char kContentSettingsPatternPairs[]; | 338 extern const char kContentSettingsPatternPairs[]; |
342 extern const char kContentSettingsDefaultWhitelistVersion[]; | 339 extern const char kContentSettingsDefaultWhitelistVersion[]; |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
830 | 827 |
831 #if defined(OS_ANDROID) | 828 #if defined(OS_ANDROID) |
832 extern const char kPartnerBookmarkMappings[]; | 829 extern const char kPartnerBookmarkMappings[]; |
833 #endif | 830 #endif |
834 | 831 |
835 extern const char kQuickCheckEnabled[]; | 832 extern const char kQuickCheckEnabled[]; |
836 | 833 |
837 } // namespace prefs | 834 } // namespace prefs |
838 | 835 |
839 #endif // CHROME_COMMON_PREF_NAMES_H_ | 836 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |