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 2171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2182 // troubleshooting. | 2182 // troubleshooting. |
2183 const char kComponentUpdaterState[] = "component_updater.state"; | 2183 const char kComponentUpdaterState[] = "component_updater.state"; |
2184 | 2184 |
2185 // A boolean where true means that the browser has previously attempted to | 2185 // A boolean where true means that the browser has previously attempted to |
2186 // enable autoupdate and failed, so the next out-of-date browser start should | 2186 // enable autoupdate and failed, so the next out-of-date browser start should |
2187 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome | 2187 // not prompt the user to enable autoupdate, it should offer to reinstall Chrome |
2188 // instead. | 2188 // instead. |
2189 const char kAttemptedToEnableAutoupdate[] = | 2189 const char kAttemptedToEnableAutoupdate[] = |
2190 "browser.attempted_to_enable_autoupdate"; | 2190 "browser.attempted_to_enable_autoupdate"; |
2191 | 2191 |
| 2192 #if defined(OS_WIN) |
| 2193 // The number of times an attempt at registering the SwReporter component was |
| 2194 // made. Cleared back to 0 when it completes. |
| 2195 const char kSwReporterComponentRegisterTryCount[] = |
| 2196 "swreporter_component.register_try_count"; |
| 2197 |
| 2198 // The number of times an attempt at executing the SwReporter component was |
| 2199 // made. Cleared back to 0 when it completes. |
| 2200 const char kSwReporterComponentExecuteTryCount[] = |
| 2201 "swreporter_component.execute_try_count"; |
| 2202 #endif |
| 2203 |
2192 // The next media gallery ID to assign. | 2204 // The next media gallery ID to assign. |
2193 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; | 2205 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; |
2194 | 2206 |
2195 // A list of dictionaries, where each dictionary represents a known media | 2207 // A list of dictionaries, where each dictionary represents a known media |
2196 // gallery. | 2208 // gallery. |
2197 const char kMediaGalleriesRememberedGalleries[] = | 2209 const char kMediaGalleriesRememberedGalleries[] = |
2198 "media_galleries.remembered_galleries"; | 2210 "media_galleries.remembered_galleries"; |
2199 | 2211 |
2200 // The last time a media scan completed. | 2212 // The last time a media scan completed. |
2201 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; | 2213 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; |
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2375 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2387 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2376 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2388 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2377 // title or an empty string if the bookmark node was removed. | 2389 // title or an empty string if the bookmark node was removed. |
2378 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2390 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2379 #endif | 2391 #endif |
2380 | 2392 |
2381 // Whether DNS Quick Check is disabled in proxy resolution. | 2393 // Whether DNS Quick Check is disabled in proxy resolution. |
2382 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2394 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2383 | 2395 |
2384 } // namespace prefs | 2396 } // namespace prefs |
OLD | NEW |