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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 extern const char kPluginsDisabledPlugins[]; | 300 extern const char kPluginsDisabledPlugins[]; |
301 extern const char kPluginsDisabledPluginsExceptions[]; | 301 extern const char kPluginsDisabledPluginsExceptions[]; |
302 extern const char kPluginsEnabledPlugins[]; | 302 extern const char kPluginsEnabledPlugins[]; |
303 extern const char kPluginsEnabledInternalPDF[]; | 303 extern const char kPluginsEnabledInternalPDF[]; |
304 extern const char kPluginsEnabledNaCl[]; | 304 extern const char kPluginsEnabledNaCl[]; |
305 extern const char kPluginsShowSetReaderDefaultInfobar[]; | 305 extern const char kPluginsShowSetReaderDefaultInfobar[]; |
306 extern const char kPluginsShowDetails[]; | 306 extern const char kPluginsShowDetails[]; |
307 extern const char kPluginsAllowOutdated[]; | 307 extern const char kPluginsAllowOutdated[]; |
308 extern const char kPluginsAlwaysAuthorize[]; | 308 extern const char kPluginsAlwaysAuthorize[]; |
309 extern const char kCheckDefaultBrowser[]; | 309 extern const char kCheckDefaultBrowser[]; |
310 extern const char kDefaultBrowserFlowDialog[]; | 310 #if defined(OS_WIN) |
| 311 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; |
| 312 #endif |
311 extern const char kDefaultBrowserSettingEnabled[]; | 313 extern const char kDefaultBrowserSettingEnabled[]; |
312 #if defined(OS_MACOSX) | 314 #if defined(OS_MACOSX) |
313 extern const char kShowUpdatePromotionInfoBar[]; | 315 extern const char kShowUpdatePromotionInfoBar[]; |
314 #endif | 316 #endif |
315 extern const char kUseCustomChromeFrame[]; | 317 extern const char kUseCustomChromeFrame[]; |
316 extern const char kShowOmniboxSearchHint[]; | 318 extern const char kShowOmniboxSearchHint[]; |
317 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE | 319 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE |
318 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE | 320 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE |
319 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE | 321 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE |
320 extern const char kDesktopNotificationPosition[]; | 322 extern const char kDesktopNotificationPosition[]; |
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
747 extern const char kNetworkProfileWarningsLeft[]; | 749 extern const char kNetworkProfileWarningsLeft[]; |
748 extern const char kNetworkProfileLastWarningTime[]; | 750 extern const char kNetworkProfileLastWarningTime[]; |
749 | 751 |
750 #if defined(OS_MACOSX) | 752 #if defined(OS_MACOSX) |
751 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 753 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
752 #endif // defined(OS_MACOSX) | 754 #endif // defined(OS_MACOSX) |
753 | 755 |
754 } // namespace prefs | 756 } // namespace prefs |
755 | 757 |
756 #endif // CHROME_COMMON_PREF_NAMES_H_ | 758 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |