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 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2367 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 2367 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
2368 | 2368 |
2369 // String that represents the recovery component last downloaded version. This | 2369 // String that represents the recovery component last downloaded version. This |
2370 // takes the usual 'a.b.c.d' notation. | 2370 // takes the usual 'a.b.c.d' notation. |
2371 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 2371 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
2372 | 2372 |
2373 // String that stores the component updater last known state. This is used for | 2373 // String that stores the component updater last known state. This is used for |
2374 // troubleshooting. | 2374 // troubleshooting. |
2375 const char kComponentUpdaterState[] = "component_updater.state"; | 2375 const char kComponentUpdaterState[] = "component_updater.state"; |
2376 | 2376 |
2377 // A boolean where true means that the browser tried to turn on autoupdate and | |
2378 // failed, so next browser start should not offer the user to enable autoupdate, | |
2379 // it should offer to reinstall Chrome instead. | |
2380 const char kFailedTurningOnAutoupdate[] = | |
robertshield
2014/03/26 03:20:11
see other comment, suggest calling kAttemptedToRee
MAD
2014/03/26 19:30:16
Done.
| |
2381 "browser.failed_turning_on_autoupdate"; | |
2382 | |
2377 // The next media gallery ID to assign. | 2383 // The next media gallery ID to assign. |
2378 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2384 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
2379 | 2385 |
2380 // A list of dictionaries, where each dictionary represents a known media | 2386 // A list of dictionaries, where each dictionary represents a known media |
2381 // gallery. | 2387 // gallery. |
2382 const char kMediaGalleriesRememberedGalleries[] = | 2388 const char kMediaGalleriesRememberedGalleries[] = |
2383 "media_galleries.remembered_galleries"; | 2389 "media_galleries.remembered_galleries"; |
2384 | 2390 |
2385 // The last time a media scan completed. | 2391 // The last time a media scan completed. |
2386 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2392 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2607 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2613 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2608 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2614 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2609 // title or an empty string if the bookmark node was removed. | 2615 // title or an empty string if the bookmark node was removed. |
2610 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2616 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2611 #endif | 2617 #endif |
2612 | 2618 |
2613 // Whether DNS Quick Check is disabled in proxy resolution. | 2619 // Whether DNS Quick Check is disabled in proxy resolution. |
2614 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2620 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2615 | 2621 |
2616 } // namespace prefs | 2622 } // namespace prefs |
OLD | NEW |