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 2206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2217 // troubleshooting. | 2217 // troubleshooting. |
2218 const char kComponentUpdaterState[] = "component_updater.state"; | 2218 const char kComponentUpdaterState[] = "component_updater.state"; |
2219 | 2219 |
2220 // A boolean where true means that the browser has previously attempted to | 2220 // A boolean where true means that the browser has previously attempted to |
2221 // enable autoupdate and failed, so the next out-of-date browser start should | 2221 // enable autoupdate and failed, so the next out-of-date browser start should |
2222 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2222 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
2223 // instead. | 2223 // instead. |
2224 const char kAttemptedToEnableAutoupdate[] = | 2224 const char kAttemptedToEnableAutoupdate[] = |
2225 "browser.attempted_to_enable_autoupdate"; | 2225 "browser.attempted_to_enable_autoupdate"; |
2226 | 2226 |
| 2227 #if defined(OS_WIN) |
| 2228 // The number of attempts left to execute the SwReporter. This starts at the max |
| 2229 // number of retries allowed, and goes down as attempts are made and is cleared |
| 2230 // back to 0 when it successfully completes. |
| 2231 const char kSwReporterExecuteTryCount[] = "software_reporter.execute_try_count"; |
| 2232 #endif |
| 2233 |
2227 // The next media gallery ID to assign. | 2234 // The next media gallery ID to assign. |
2228 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2235 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
2229 | 2236 |
2230 // A list of dictionaries, where each dictionary represents a known media | 2237 // A list of dictionaries, where each dictionary represents a known media |
2231 // gallery. | 2238 // gallery. |
2232 const char kMediaGalleriesRememberedGalleries[] = | 2239 const char kMediaGalleriesRememberedGalleries[] = |
2233 "media_galleries.remembered_galleries"; | 2240 "media_galleries.remembered_galleries"; |
2234 | 2241 |
2235 // The last time a media scan completed. | 2242 // The last time a media scan completed. |
2236 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2243 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2411 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2418 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2412 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2419 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2413 // title or an empty string if the bookmark node was removed. | 2420 // title or an empty string if the bookmark node was removed. |
2414 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2421 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2415 #endif | 2422 #endif |
2416 | 2423 |
2417 // Whether DNS Quick Check is disabled in proxy resolution. | 2424 // Whether DNS Quick Check is disabled in proxy resolution. |
2418 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2425 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2419 | 2426 |
2420 } // namespace prefs | 2427 } // namespace prefs |
OLD | NEW |