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 2185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2196 // troubleshooting. | 2196 // troubleshooting. |
2197 const char kComponentUpdaterState[] = "component_updater.state"; | 2197 const char kComponentUpdaterState[] = "component_updater.state"; |
2198 | 2198 |
2199 // A boolean where true means that the browser has previously attempted to | 2199 // A boolean where true means that the browser has previously attempted to |
2200 // enable autoupdate and failed, so the next out-of-date browser start should | 2200 // enable autoupdate and failed, so the next out-of-date browser start should |
2201 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2201 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
2202 // instead. | 2202 // instead. |
2203 const char kAttemptedToEnableAutoupdate[] = | 2203 const char kAttemptedToEnableAutoupdate[] = |
2204 "browser.attempted_to_enable_autoupdate"; | 2204 "browser.attempted_to_enable_autoupdate"; |
2205 | 2205 |
2206 #if defined(OS_WIN) | |
2207 // The number of times an attempt at executing the SwReporter was made. Cleared | |
2208 // back to 0 when it completes. | |
Sorin Jianu
2014/06/20 00:31:43
See the previous comment.
We can start at maxTrie
MAD
2014/06/20 04:51:59
Done.
| |
2209 const char kSwReporterExecuteTryCount[] = "software_reporter.execute_try_count"; | |
2210 #endif | |
2211 | |
2206 // The next media gallery ID to assign. | 2212 // The next media gallery ID to assign. |
2207 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2213 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
2208 | 2214 |
2209 // A list of dictionaries, where each dictionary represents a known media | 2215 // A list of dictionaries, where each dictionary represents a known media |
2210 // gallery. | 2216 // gallery. |
2211 const char kMediaGalleriesRememberedGalleries[] = | 2217 const char kMediaGalleriesRememberedGalleries[] = |
2212 "media_galleries.remembered_galleries"; | 2218 "media_galleries.remembered_galleries"; |
2213 | 2219 |
2214 // The last time a media scan completed. | 2220 // The last time a media scan completed. |
2215 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2221 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2390 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2396 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2391 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2397 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2392 // title or an empty string if the bookmark node was removed. | 2398 // title or an empty string if the bookmark node was removed. |
2393 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2399 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2394 #endif | 2400 #endif |
2395 | 2401 |
2396 // Whether DNS Quick Check is disabled in proxy resolution. | 2402 // Whether DNS Quick Check is disabled in proxy resolution. |
2397 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2403 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2398 | 2404 |
2399 } // namespace prefs | 2405 } // namespace prefs |
OLD | NEW |