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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 2072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2083 | 2083 |
2084 // Whether user-specified handlers for protocols and content types can be | 2084 // Whether user-specified handlers for protocols and content types can be |
2085 // specified. | 2085 // specified. |
2086 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 2086 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; |
2087 | 2087 |
2088 // Integer that specifies the policy refresh rate for device-policy in | 2088 // Integer that specifies the policy refresh rate for device-policy in |
2089 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 2089 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
2090 // by the cloud policy subsystem. | 2090 // by the cloud policy subsystem. |
2091 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 2091 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
2092 | 2092 |
2093 // String that represents the recovery component last downloaded version. This | |
2094 // takes the usual 'a.b.c.d' notation. | |
2095 const char kRecoveryComponentVersion[] = "recovery_component.version"; | |
2096 | |
2097 // String that stores the component updater last known state. This is used for | |
2098 // troubleshooting. | |
2099 const char kComponentUpdaterState[] = "component_updater.state"; | |
2100 | |
2101 // A boolean where true means that the browser has previously attempted to | 2093 // A boolean where true means that the browser has previously attempted to |
2102 // enable autoupdate and failed, so the next out-of-date browser start should | 2094 // enable autoupdate and failed, so the next out-of-date browser start should |
2103 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2095 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
2104 // instead. | 2096 // instead. |
2105 const char kAttemptedToEnableAutoupdate[] = | 2097 const char kAttemptedToEnableAutoupdate[] = |
2106 "browser.attempted_to_enable_autoupdate"; | 2098 "browser.attempted_to_enable_autoupdate"; |
2107 | 2099 |
2108 #if defined(OS_WIN) | 2100 #if defined(OS_WIN) |
2109 // The number of attempts left to execute the SwReporter. This starts at the max | 2101 // The number of attempts left to execute the SwReporter. This starts at the max |
2110 // number of retries allowed, and goes down as attempts are made and is cleared | 2102 // number of retries allowed, and goes down as attempts are made and is cleared |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2299 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2291 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2300 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2292 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2301 // title or an empty string if the bookmark node was removed. | 2293 // title or an empty string if the bookmark node was removed. |
2302 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2294 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2303 #endif | 2295 #endif |
2304 | 2296 |
2305 // Whether DNS Quick Check is disabled in proxy resolution. | 2297 // Whether DNS Quick Check is disabled in proxy resolution. |
2306 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2298 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2307 | 2299 |
2308 } // namespace prefs | 2300 } // namespace prefs |
OLD | NEW |