| 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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; | 812 const char kPluginsAllowOutdated[] = "plugins.allow_outdated"; |
| 813 | 813 |
| 814 // Boolean that indicates whether plugins that require authorization should | 814 // Boolean that indicates whether plugins that require authorization should |
| 815 // be always allowed or not. | 815 // be always allowed or not. |
| 816 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; | 816 const char kPluginsAlwaysAuthorize[] = "plugins.always_authorize"; |
| 817 | 817 |
| 818 // Boolean that indicates whether we should check if we are the default browser | 818 // Boolean that indicates whether we should check if we are the default browser |
| 819 // on start-up. | 819 // on start-up. |
| 820 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; | 820 const char kCheckDefaultBrowser[] = "browser.check_default_browser"; |
| 821 | 821 |
| 822 // TODO(motek): Remove this once a firm decision is made regarding how the UI |
| 823 // should be presented. |
| 824 const char kDefaultBrowserFlowDialog[] = "browser.set_default_flow_dialog"; |
| 825 |
| 822 // Policy setting whether default browser check should be disabled and default | 826 // Policy setting whether default browser check should be disabled and default |
| 823 // browser registration should take place. | 827 // browser registration should take place. |
| 824 const char kDefaultBrowserSettingEnabled[] = | 828 const char kDefaultBrowserSettingEnabled[] = |
| 825 "browser.default_browser_setting_enabled"; | 829 "browser.default_browser_setting_enabled"; |
| 826 | 830 |
| 827 #if defined(OS_MACOSX) | 831 #if defined(OS_MACOSX) |
| 828 // Boolean that indicates whether the application should show the info bar | 832 // Boolean that indicates whether the application should show the info bar |
| 829 // asking the user to set up automatic updates when Keystone promotion is | 833 // asking the user to set up automatic updates when Keystone promotion is |
| 830 // required. | 834 // required. |
| 831 const char kShowUpdatePromotionInfoBar[] = | 835 const char kShowUpdatePromotionInfoBar[] = |
| (...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1927 const char kInManagedMode[] = "managed_mode"; | 1931 const char kInManagedMode[] = "managed_mode"; |
| 1928 | 1932 |
| 1929 // Counts how many more times the 'profile on a network share' warning should be | 1933 // Counts how many more times the 'profile on a network share' warning should be |
| 1930 // shown to the user before the next silence period. | 1934 // shown to the user before the next silence period. |
| 1931 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; | 1935 const char kNetworkProfileWarningsLeft[] = "network_profile.warnings_left"; |
| 1932 // Tracks the time of the last shown warning. Used to reset | 1936 // Tracks the time of the last shown warning. Used to reset |
| 1933 // |network_profile.warnings_left| after a silence period. | 1937 // |network_profile.warnings_left| after a silence period. |
| 1934 const char kNetworkProfileLastWarningTime[] = | 1938 const char kNetworkProfileLastWarningTime[] = |
| 1935 "network_profile.last_warning_time"; | 1939 "network_profile.last_warning_time"; |
| 1936 } // namespace prefs | 1940 } // namespace prefs |
| OLD | NEW |