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

Unified Diff: components/metrics/stability_metrics_provider.h

Issue 2687393004: Gather stability prefs into managing objects. (Closed)
Patch Set: Incorporate Feedback Created 3 years, 10 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/metrics/metrics_service_unittest.cc ('k') | components/metrics/stability_metrics_provider.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/metrics/stability_metrics_provider.h
diff --git a/components/metrics/stability_metrics_provider.h b/components/metrics/stability_metrics_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..4e16ed67f87b15c10a44ebd70089d84b0a11a872
--- /dev/null
+++ b/components/metrics/stability_metrics_provider.h
@@ -0,0 +1,53 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_METRICS_STABILITY_METRICS_PROVIDER_H_
+#define COMPONENTS_METRICS_STABILITY_METRICS_PROVIDER_H_
+
+#include "components/metrics/metrics_provider.h"
+
+class PrefService;
+class PrefRegistrySimple;
+
+namespace metrics {
+
+class SystemProfileProto;
+
+// Stores and loads system information to prefs for stability logs.
+class StabilityMetricsProvider : public MetricsProvider {
+ public:
+ StabilityMetricsProvider(PrefService* local_state);
+ ~StabilityMetricsProvider() override;
+
+ static void RegisterPrefs(PrefRegistrySimple* registry);
+
+ void RecordBreakpadRegistration(bool success);
+ void RecordBreakpadHasDebugger(bool has_debugger);
+
+ void CheckLastSessionEndCompleted();
+ void MarkSessionEndCompleted(bool end_completed);
+
+ void LogCrash();
+ void LogStabilityLogDeferred();
+ void LogStabilityDataDiscarded();
+ void LogLaunch();
+ void LogStabilityVersionMismatch();
+
+ private:
+ // Increments an Integer pref value specified by |path|.
+ void IncrementPrefValue(const char* path);
+
+ // MetricsProvider:
+ void ClearSavedStabilityMetrics() override;
+ void ProvideStabilityMetrics(
+ SystemProfileProto* system_profile_proto) override;
+
+ PrefService* local_state_;
+
+ DISALLOW_COPY_AND_ASSIGN(StabilityMetricsProvider);
+};
+
+} // namespace metrics
+
+#endif // COMPONENTS_METRICS_STABILITY_METRICS_PROVIDER_H_
« no previous file with comments | « components/metrics/metrics_service_unittest.cc ('k') | components/metrics/stability_metrics_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698