| 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 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 821 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 822 | 822 |
| 823 // Boolean that indicates whether plugins that require authorization should | 823 // Boolean that indicates whether plugins that require authorization should |
| 824 // be always allowed or not. | 824 // be always allowed or not. |
| 825 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; | 825 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; |
| 826 | 826 |
| 827 // Boolean that indicates whether we should check if we are the default browser | 827 // Boolean that indicates whether we should check if we are the default browser |
| 828 // on start-up. | 828 // on start-up. |
| 829 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 829 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 830 | 830 |
| 831 // TODO(motek): Remove this once a firm decision is made regarding how the UI |
| 832 // should be presented. |
| 833 const char kDefaultBrowserFlowDialog[] = "browser.set_default_flow_dialog"; |
| 834 |
| 831 // Policy setting whether default browser check should be disabled and default | 835 // Policy setting whether default browser check should be disabled and default |
| 832 // browser registration should take place. | 836 // browser registration should take place. |
| 833 const char kDefaultBrowserSettingEnabled[] = | 837 const char kDefaultBrowserSettingEnabled[] = |
| 834 "browser.default_browser_setting_enabled"; | 838 "browser.default_browser_setting_enabled"; |
| 835 | 839 |
| 836 #if defined(OS_MACOSX) | 840 #if defined(OS_MACOSX) |
| 837 // Boolean that indicates whether the application should show the info bar | 841 // Boolean that indicates whether the application should show the info bar |
| 838 // asking the user to set up automatic updates when Keystone promotion is | 842 // asking the user to set up automatic updates when Keystone promotion is |
| 839 // required. | 843 // required. |
| 840 const char kShowUpdatePromotionInfoBar[] = | 844 const char kShowUpdatePromotionInfoBar[] = |
| (...skipping 1109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1950 const char kNetworkProfileLastWarningTime[] = | 1954 const char kNetworkProfileLastWarningTime[] = |
| 1951 "network_profile.last_warning_time"; | 1955 "network_profile.last_warning_time"; |
| 1952 | 1956 |
| 1953 #if defined(OS_MACOSX) | 1957 #if defined(OS_MACOSX) |
| 1954 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. | 1958 // A timestamp of when the obsolete OS infobar was last shown to a user on 10.5. |
| 1955 const char kMacLeopardObsoleteInfobarLastShown[] = | 1959 const char kMacLeopardObsoleteInfobarLastShown[] = |
| 1956 "mac_105_obsolete_infobar_last_shown"; | 1960 "mac_105_obsolete_infobar_last_shown"; |
| 1957 #endif // defined(OS_MACOSX) | 1961 #endif // defined(OS_MACOSX) |
| 1958 | 1962 |
| 1959 } // namespace prefs | 1963 } // namespace prefs |
| OLD | NEW |