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 2343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2354 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 2354 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
2355 | 2355 |
2356 // String that represents the recovery component last downloaded version. This | 2356 // String that represents the recovery component last downloaded version. This |
2357 // takes the usual 'a.b.c.d' notation. | 2357 // takes the usual 'a.b.c.d' notation. |
2358 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 2358 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
2359 | 2359 |
2360 // String that stores the component updater last known state. This is used for | 2360 // String that stores the component updater last known state. This is used for |
2361 // troubleshooting. | 2361 // troubleshooting. |
2362 const char kComponentUpdaterState[] = "component_updater.state"; | 2362 const char kComponentUpdaterState[] = "component_updater.state"; |
2363 | 2363 |
| 2364 // A boolean where true means that the browser has previously attempted to |
| 2365 // enable autoupdate and failed, so the next out-of-date browser start should |
| 2366 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
| 2367 // instead. |
| 2368 const char kAttemptedToEnableAutoupdate[] = |
| 2369 "browser.attempted_to_enable_autoupdate"; |
| 2370 |
2364 // The next media gallery ID to assign. | 2371 // The next media gallery ID to assign. |
2365 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2372 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
2366 | 2373 |
2367 // A list of dictionaries, where each dictionary represents a known media | 2374 // A list of dictionaries, where each dictionary represents a known media |
2368 // gallery. | 2375 // gallery. |
2369 const char kMediaGalleriesRememberedGalleries[] = | 2376 const char kMediaGalleriesRememberedGalleries[] = |
2370 "media_galleries.remembered_galleries"; | 2377 "media_galleries.remembered_galleries"; |
2371 | 2378 |
2372 // The last time a media scan completed. | 2379 // The last time a media scan completed. |
2373 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2380 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2594 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2601 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2595 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2602 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2596 // title or an empty string if the bookmark node was removed. | 2603 // title or an empty string if the bookmark node was removed. |
2597 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2604 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2598 #endif | 2605 #endif |
2599 | 2606 |
2600 // Whether DNS Quick Check is disabled in proxy resolution. | 2607 // Whether DNS Quick Check is disabled in proxy resolution. |
2601 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2608 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2602 | 2609 |
2603 } // namespace prefs | 2610 } // namespace prefs |
OLD | NEW |