blob: f3c2fb577a7c3de2699cf469eb7161a64deb332a [file] [log] [blame]
// Copyright 2019 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 CHROMECAST_BROWSER_METRICS_CAST_BROWSER_METRICS_H_
#define CHROMECAST_BROWSER_METRICS_CAST_BROWSER_METRICS_H_
#include <memory>
#include "base/callback_forward.h"
#include "base/macros.h"
#include "build/build_config.h"
#include "chromecast/metrics/cast_metrics_service_client.h"
namespace chromecast {
namespace metrics {
class ExternalMetrics;
class CastBrowserMetrics {
public:
explicit CastBrowserMetrics(
std::unique_ptr<CastMetricsServiceClient> metrics_service_client);
~CastBrowserMetrics();
void Initialize();
void Finalize();
// Processes all events from shared file. This should be used to consume all
// events in the file before shutdown. This function is safe to call from any
// thread.
void ProcessExternalEvents(const base::Closure& cb);
void CollectFinalMetricsForLog(const base::Closure& done_callback);
metrics::CastMetricsServiceClient* metrics_service_client() const {
return metrics_service_client_.get();
}
private:
std::unique_ptr<CastMetricsServiceClient> metrics_service_client_;
#if defined(OS_LINUX)
ExternalMetrics* external_metrics_ = nullptr;
ExternalMetrics* platform_metrics_ = nullptr;
#endif // defined(OS_LINUX)
DISALLOW_COPY_AND_ASSIGN(CastBrowserMetrics);
};
} // namespace metrics
} // namespace chromecast
#endif // CHROMECAST_BROWSER_METRICS_CAST_BROWSER_METRICS_H_