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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/common/pref_names.cc
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc
index c7e351c7def386d14e039cc65fd29878dc0d4557..0b7f18c503735f2381f12203ba59173f6f34870f 100644
--- a/chrome/common/pref_names.cc
+++ b/chrome/common/pref_names.cc
@@ -2203,6 +2203,18 @@ const char kComponentUpdaterState[] = "component_updater.state";
const char kAttemptedToEnableAutoupdate[] =
"browser.attempted_to_enable_autoupdate";
+#if defined(OS_WIN)
+// The number of times an attempt at registering the SwReporter component was
+// made. Cleared back to 0 when it completes.
+const char kSwReporterComponentRegisterTryCount[] =
+ "swreporter_component.register_try_count";
+
+// The number of times an attempt at executing the SwReporter component was
+// made. Cleared back to 0 when it completes.
+const char kSwReporterComponentExecuteTryCount[] =
+ "swreporter_component.execute_try_count";
+#endif
+
// The next media gallery ID to assign.
const char kMediaGalleriesUniqueId[] = "media_galleries.gallery_id";

Powered by Google App Engine
This is Rietveld 408576698