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 #pragma once | 9 #pragma once |
10 | 10 |
(...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 extern const char kCheckDefaultBrowserOnFirstRun[]; |
311 #if defined(OS_WIN) | |
312 extern const char kDefaultBrowserFlowDialogEnabled[]; | |
313 extern const char kSuppressSwitchToMetroModeOnSetDefault[]; | |
grt (UTC plus 2)
2012/07/05 17:16:09
is there a more precise definition for the desired
motek.
2012/07/05 20:22:26
I can only second what you wrote. At first, I beli
| |
314 #endif | |
311 extern const char kDefaultBrowserSettingEnabled[]; | 315 extern const char kDefaultBrowserSettingEnabled[]; |
312 #if defined(OS_MACOSX) | 316 #if defined(OS_MACOSX) |
313 extern const char kShowUpdatePromotionInfoBar[]; | 317 extern const char kShowUpdatePromotionInfoBar[]; |
314 #endif | 318 #endif |
315 extern const char kUseCustomChromeFrame[]; | 319 extern const char kUseCustomChromeFrame[]; |
316 extern const char kShowOmniboxSearchHint[]; | 320 extern const char kShowOmniboxSearchHint[]; |
317 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE | 321 extern const char kDesktopNotificationDefaultContentSetting[]; // OBSOLETE |
318 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE | 322 extern const char kDesktopNotificationAllowedOrigins[]; // OBSOLETE |
319 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE | 323 extern const char kDesktopNotificationDeniedOrigins[]; // OBSOLETE |
320 extern const char kDesktopNotificationPosition[]; | 324 extern const char kDesktopNotificationPosition[]; |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
742 extern const char kNetworkProfileWarningsLeft[]; | 746 extern const char kNetworkProfileWarningsLeft[]; |
743 extern const char kNetworkProfileLastWarningTime[]; | 747 extern const char kNetworkProfileLastWarningTime[]; |
744 | 748 |
745 #if defined(OS_MACOSX) | 749 #if defined(OS_MACOSX) |
746 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 750 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
747 #endif // defined(OS_MACOSX) | 751 #endif // defined(OS_MACOSX) |
748 | 752 |
749 } // namespace prefs | 753 } // namespace prefs |
750 | 754 |
751 #endif // CHROME_COMMON_PREF_NAMES_H_ | 755 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |