| 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 | 8 |
| 9 namespace prefs { | 9 namespace prefs { |
| 10 | 10 |
| (...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 825 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 826 | 826 |
| 827 // Boolean that indicates whether plugins that require authorization should | 827 // Boolean that indicates whether plugins that require authorization should |
| 828 // be always allowed or not. | 828 // be always allowed or not. |
| 829 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; | 829 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; |
| 830 | 830 |
| 831 // Boolean that indicates whether we should check if we are the default browser | 831 // Boolean that indicates whether we should check if we are the default browser |
| 832 // on start-up. | 832 // on start-up. |
| 833 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 833 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 834 | 834 |
| 835 // TODO(motek): Remove this once a firm decision is made regarding how the UI |
| 836 // should be presented. |
| 837 const char kDefaultBrowserFlowDialog[] = "browser.set_default_flow_dialog"; |
| 838 |
| 835 // Policy setting whether default browser check should be disabled and default | 839 // Policy setting whether default browser check should be disabled and default |
| 836 // browser registration should take place. | 840 // browser registration should take place. |
| 837 const char kDefaultBrowserSettingEnabled[] = | 841 const char kDefaultBrowserSettingEnabled[] = |
| 838 "browser.default_browser_setting_enabled"; | 842 "browser.default_browser_setting_enabled"; |
| 839 | 843 |
| 840 #if defined(OS_MACOSX) | 844 #if defined(OS_MACOSX) |
| 841 // Boolean that indicates whether the application should show the info bar | 845 // Boolean that indicates whether the application should show the info bar |
| 842 // asking the user to set up automatic updates when Keystone promotion is | 846 // asking the user to set up automatic updates when Keystone promotion is |
| 843 // required. | 847 // required. |
| 844 const char kShowUpdatePromotionInfoBar[] = | 848 const char kShowUpdatePromotionInfoBar[] = |
| (...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1962 const char kNetworkProfileLastWarningTime[] = | 1966 const char kNetworkProfileLastWarningTime[] = |
| 1963 "network_profile.last_warning_time"; | 1967 "network_profile.last_warning_time"; |
| 1964 | 1968 |
| 1965 #if defined(OS_MACOSX) | 1969 #if defined(OS_MACOSX) |
| 1966 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1970 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1967 const char kMacLeopardObsoleteInfobarLastShown[] = | 1971 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1968 "mac_105_obsolete_infobar_last_shown"; | 1972 "mac_105_obsolete_infobar_last_shown"; |
| 1969 #endif // defined(OS_MACOSX) | 1973 #endif // defined(OS_MACOSX) |
| 1970 | 1974 |
| 1971 } // namespace prefs | 1975 } // namespace prefs |
| OLD | NEW |