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

Unified Diff: components/component_updater/pref_names.cc

Issue 599653002: SRT Bubble (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merged in ToT. Created 6 years, 3 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
« no previous file with comments | « components/component_updater/pref_names.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/component_updater/pref_names.cc
diff --git a/components/component_updater/pref_names.cc b/components/component_updater/pref_names.cc
index 285cf4e3ae783812e047a09c3daa7b2bf62e8f29..7da1186a9195e753138c5eba23bddacdc0b2ef02 100644
--- a/components/component_updater/pref_names.cc
+++ b/components/component_updater/pref_names.cc
@@ -11,9 +11,23 @@ namespace prefs {
const char kRecoveryComponentVersion[] = "recovery_component.version";
#if defined(OS_WIN)
-// The last time SwReporter was triggered.
+// The last exit code integer value returned by the SwReporter. Saved in local
+// state.
+const char kSwReporterLastExitCode[] = "software_reporter.last_exit_code";
+
+// The last time SwReporter was triggered. Saved in local state.
const char kSwReporterLastTimeTriggered[] =
"software_reporter.last_time_triggered";
+
+// The exit code integer value of the reporter run that triggered an SRT prompt.
+// Stored in the protected prefs of the profile that owns the browser where the
+// prompt was shown.
+const char kSwReporterPromptReason[] = "software_reporter.prompt_reason";
+
+// The version string of the reporter that triggered an SRT prompt. An empty
+// string when the prompt wasn't shown yet. Stored in the protected prefs of the
+// profile that owns the browser where the prompt was shown.
+const char kSwReporterPromptVersion[] = "software_reporter.prompt_version";
#endif
} // namespace prefs
« no previous file with comments | « components/component_updater/pref_names.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698