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 2190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2201 | 2201 |
2202 // Integer that specifies the policy refresh rate for device-policy in | 2202 // Integer that specifies the policy refresh rate for device-policy in |
2203 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 2203 // milliseconds. Not all values are meaningful, so it is clamped to a sane range |
2204 // by the cloud policy subsystem. | 2204 // by the cloud policy subsystem. |
2205 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 2205 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
2206 | 2206 |
2207 // String that represents the recovery component last downloaded version. This | 2207 // String that represents the recovery component last downloaded version. This |
2208 // takes the usual 'a.b.c.d' notation. | 2208 // takes the usual 'a.b.c.d' notation. |
2209 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 2209 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
2210 | 2210 |
| 2211 // Boolean that indicates whether elevation is needed to recover Chrome upgrade. |
| 2212 const char kRecoveryComponentNeedsElevation[] = |
| 2213 "recovery_component.need_elevation"; |
| 2214 |
2211 // String that stores the component updater last known state. This is used for | 2215 // String that stores the component updater last known state. This is used for |
2212 // troubleshooting. | 2216 // troubleshooting. |
2213 const char kComponentUpdaterState[] = "component_updater.state"; | 2217 const char kComponentUpdaterState[] = "component_updater.state"; |
2214 | 2218 |
2215 // A boolean where true means that the browser has previously attempted to | 2219 // A boolean where true means that the browser has previously attempted to |
2216 // enable autoupdate and failed, so the next out-of-date browser start should | 2220 // enable autoupdate and failed, so the next out-of-date browser start should |
2217 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2221 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
2218 // instead. | 2222 // instead. |
2219 const char kAttemptedToEnableAutoupdate[] = | 2223 const char kAttemptedToEnableAutoupdate[] = |
2220 "browser.attempted_to_enable_autoupdate"; | 2224 "browser.attempted_to_enable_autoupdate"; |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2405 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2409 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2406 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2410 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2407 // title or an empty string if the bookmark node was removed. | 2411 // title or an empty string if the bookmark node was removed. |
2408 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2412 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2409 #endif | 2413 #endif |
2410 | 2414 |
2411 // Whether DNS Quick Check is disabled in proxy resolution. | 2415 // Whether DNS Quick Check is disabled in proxy resolution. |
2412 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2416 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2413 | 2417 |
2414 } // namespace prefs | 2418 } // namespace prefs |
OLD | NEW |