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

Unified Diff: components/metrics/stability_metrics_provider.h

Issue 2687393004: Gather stability prefs into managing objects. (Closed)
Patch Set: Remove unused method 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
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..8b65fd6a5b9bb06134b805fb62cf10ffac33c9b3
--- /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:
+ // Increment 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_

Powered by Google App Engine
This is Rietveld 408576698