| 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_
|
|
|