| 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 346 #if defined(ENABLE_PLUGIN_INSTALLATION) | 346 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 347 extern const char kPluginsMetadata[]; | 347 extern const char kPluginsMetadata[]; |
| 348 extern const char kPluginsResourceCacheUpdate[]; | 348 extern const char kPluginsResourceCacheUpdate[]; |
| 349 #endif | 349 #endif |
| 350 extern const char kDefaultBrowserLastDeclined[]; | 350 extern const char kDefaultBrowserLastDeclined[]; |
| 351 extern const char kResetCheckDefaultBrowser[]; | 351 extern const char kResetCheckDefaultBrowser[]; |
| 352 extern const char kDefaultBrowserSettingEnabled[]; | 352 extern const char kDefaultBrowserSettingEnabled[]; |
| 353 #if defined(OS_MACOSX) | 353 #if defined(OS_MACOSX) |
| 354 extern const char kShowUpdatePromotionInfoBar[]; | 354 extern const char kShowUpdatePromotionInfoBar[]; |
| 355 #endif | 355 #endif |
| 356 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 356 extern const char kUseCustomChromeFrame[]; | 357 extern const char kUseCustomChromeFrame[]; |
| 358 #endif |
| 357 extern const char kBackShortcutBubbleShownCount[]; | 359 extern const char kBackShortcutBubbleShownCount[]; |
| 358 #if defined(ENABLE_PLUGINS) | 360 #if defined(ENABLE_PLUGINS) |
| 359 extern const char kContentSettingsPluginWhitelist[]; | 361 extern const char kContentSettingsPluginWhitelist[]; |
| 360 #endif | 362 #endif |
| 361 extern const char kPartitionDefaultZoomLevel[]; | 363 extern const char kPartitionDefaultZoomLevel[]; |
| 362 extern const char kPartitionPerHostZoomLevels[]; | 364 extern const char kPartitionPerHostZoomLevels[]; |
| 363 | 365 |
| 364 #if !defined(OS_ANDROID) | 366 #if !defined(OS_ANDROID) |
| 365 extern const char kPinnedTabs[]; | 367 extern const char kPinnedTabs[]; |
| 366 #endif | 368 #endif |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 #endif // defined(GOOGLE_CHROME_BUILD) | 820 #endif // defined(GOOGLE_CHROME_BUILD) |
| 819 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 821 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 820 #endif | 822 #endif |
| 821 | 823 |
| 822 extern const char kOriginTrialPublicKey[]; | 824 extern const char kOriginTrialPublicKey[]; |
| 823 extern const char kOriginTrialDisabledFeatures[]; | 825 extern const char kOriginTrialDisabledFeatures[]; |
| 824 | 826 |
| 825 } // namespace prefs | 827 } // namespace prefs |
| 826 | 828 |
| 827 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |