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