summaryrefslogtreecommitdiff
path: root/chromium/components/metrics/component_metrics_provider.h
blob: 7899b97150c81a7021d61c5916b1bf4acd921ff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// 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_COMPONENT_METRICS_PROVIDER_H_
#define COMPONENTS_METRICS_COMPONENT_METRICS_PROVIDER_H_

#include "components/metrics/metrics_provider.h"

namespace component_updater {
class ComponentUpdateService;
}

namespace metrics {

class SystemProfileProto;

// Stores and loads system information to prefs for stability logs.
class ComponentMetricsProvider : public MetricsProvider {
 public:
  explicit ComponentMetricsProvider(
      component_updater::ComponentUpdateService* component_update_service);
  ~ComponentMetricsProvider() override;

  // MetricsProvider:
  void ProvideSystemProfileMetrics(
      SystemProfileProto* system_profile_proto) override;

 private:
  component_updater::ComponentUpdateService* component_update_service_;

  DISALLOW_COPY_AND_ASSIGN(ComponentMetricsProvider);
};

}  // namespace metrics

#endif  // COMPONENTS_METRICS_COMPONENT_METRICS_PROVIDER_H_