blob: 80d9639ffd6809d0e1c7e2449877129aec0920d6 [file] [log] [blame]
// Copyright 2016 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 CHROME_BROWSER_METRICS_ANTIVIRUS_METRICS_PROVIDER_WIN_H_
#define CHROME_BROWSER_METRICS_ANTIVIRUS_METRICS_PROVIDER_WIN_H_
#include "components/metrics/metrics_provider.h"
#include <vector>
#include "base/callback_forward.h"
#include "base/feature_list.h"
#include "base/macros.h"
#include "base/sequence_checker.h"
#include "chrome/services/util_win/public/mojom/util_win.mojom.h"
#include "third_party/metrics_proto/system_profile.pb.h"
namespace service_manager {
class Connector;
}
// AntiVirusMetricsProvider is responsible for adding antivirus information to
// the UMA system profile proto.
class AntiVirusMetricsProvider : public metrics::MetricsProvider {
public:
static constexpr base::Feature kReportNamesFeature = {
"ReportFullAVProductDetails", base::FEATURE_DISABLED_BY_DEFAULT};
explicit AntiVirusMetricsProvider(service_manager::Connector* connector);
~AntiVirusMetricsProvider() override;
// metrics::MetricsDataProvider:
void AsyncInit(const base::Closure& done_callback) override;
void ProvideSystemProfileMetrics(
metrics::SystemProfileProto* system_profile_proto) override;
private:
// Called when metrics are done being gathered from the FILE thread.
// |done_callback| is the callback that should be called once all metrics are
// gathered.
void GotAntiVirusProducts(
const base::Closure& done_callback,
const std::vector<metrics::SystemProfileProto::AntiVirusProduct>& result);
service_manager::Connector* connector_;
chrome::mojom::UtilWinPtr util_win_ptr_;
// Information on installed AntiVirus gathered.
std::vector<metrics::SystemProfileProto::AntiVirusProduct> av_products_;
SEQUENCE_CHECKER(sequence_checker_);
DISALLOW_COPY_AND_ASSIGN(AntiVirusMetricsProvider);
};
#endif // CHROME_BROWSER_METRICS_ANTIVIRUS_METRICS_PROVIDER_WIN_H_