| 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 2079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2090 // by the cloud policy subsystem. | 2090 // by the cloud policy subsystem. |
| 2091 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 2091 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; |
| 2092 | 2092 |
| 2093 // A boolean where true means that the browser has previously attempted to | 2093 // A boolean where true means that the browser has previously attempted to |
| 2094 // enable autoupdate and failed, so the next out-of-date browser start should | 2094 // enable autoupdate and failed, so the next out-of-date browser start should |
| 2095 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2095 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
| 2096 // instead. | 2096 // instead. |
| 2097 const char kAttemptedToEnableAutoupdate[] = | 2097 const char kAttemptedToEnableAutoupdate[] = |
| 2098 "browser.attempted_to_enable_autoupdate"; | 2098 "browser.attempted_to_enable_autoupdate"; |
| 2099 | 2099 |
| 2100 #if defined(OS_WIN) | |
| 2101 // The number of attempts left to execute the SwReporter. This starts at the max | |
| 2102 // number of retries allowed, and goes down as attempts are made and is cleared | |
| 2103 // back to 0 when it successfully completes. | |
| 2104 const char kSwReporterExecuteTryCount[] = "software_reporter.execute_try_count"; | |
| 2105 #endif | |
| 2106 | |
| 2107 // The next media gallery ID to assign. | 2100 // The next media gallery ID to assign. |
| 2108 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2101 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
| 2109 | 2102 |
| 2110 // A list of dictionaries, where each dictionary represents a known media | 2103 // A list of dictionaries, where each dictionary represents a known media |
| 2111 // gallery. | 2104 // gallery. |
| 2112 const char kMediaGalleriesRememberedGalleries[] = | 2105 const char kMediaGalleriesRememberedGalleries[] = |
| 2113 "media_galleries.remembered_galleries"; | 2106 "media_galleries.remembered_galleries"; |
| 2114 | 2107 |
| 2115 // The last time a media scan completed. | 2108 // The last time a media scan completed. |
| 2116 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2109 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
| (...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2291 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2284 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2292 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2285 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2293 // title or an empty string if the bookmark node was removed. | 2286 // title or an empty string if the bookmark node was removed. |
| 2294 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2287 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2295 #endif | 2288 #endif |
| 2296 | 2289 |
| 2297 // Whether DNS Quick Check is disabled in proxy resolution. | 2290 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2298 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2291 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2299 | 2292 |
| 2300 } // namespace prefs | 2293 } // namespace prefs |
| OLD | NEW |