Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: chrome/common/pref_names.cc

Issue 333193002: Adding a SW reporter component updater (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync'd to ToT again (previous upload failed halfway). Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 registering the SwReporter component was
2208 // made. Cleared back to 0 when it completes.
2209 const char kSwReporterComponentRegisterTryCount[] =
2210 "swreporter_component.register_try_count";
2211
2212 // The number of times an attempt at executing the SwReporter component was
2213 // made. Cleared back to 0 when it completes.
2214 const char kSwReporterComponentExecuteTryCount[] =
2215 "swreporter_component.execute_try_count";
2216 #endif
2217
2206 // The next media gallery ID to assign. 2218 // The next media gallery ID to assign.
2207 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id"; 2219 const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id";
2208 2220
2209 // A list of dictionaries, where each dictionary represents a known media 2221 // A list of dictionaries, where each dictionary represents a known media
2210 // gallery. 2222 // gallery.
2211 const char kMediaGalleriesRememberedGalleries[] = 2223 const char kMediaGalleriesRememberedGalleries[] =
2212 "media_galleries.remembered_galleries"; 2224 "media_galleries.remembered_galleries";
2213 2225
2214 // The last time a media scan completed. 2226 // The last time a media scan completed.
2215 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time"; 2227 const char kMediaGalleriesLastScanTime[] = "media_galleries.last_scan_time";
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2390 // "mapped_title" entries, detailing the bookmark target URL (if any), the title 2402 // "mapped_title" entries, detailing the bookmark target URL (if any), the title
2391 // given by the PartnerBookmarksProvider and either the user-visible renamed 2403 // given by the PartnerBookmarksProvider and either the user-visible renamed
2392 // title or an empty string if the bookmark node was removed. 2404 // title or an empty string if the bookmark node was removed.
2393 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; 2405 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings";
2394 #endif 2406 #endif
2395 2407
2396 // Whether DNS Quick Check is disabled in proxy resolution. 2408 // Whether DNS Quick Check is disabled in proxy resolution.
2397 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; 2409 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled";
2398 2410
2399 } // namespace prefs 2411 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698