// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_METRICS_METRICS_LOG_UPLOADER_H_ #define COMPONENTS_METRICS_METRICS_LOG_UPLOADER_H_ #include <string> #include <string_view> #include "base/functional/callback.h" #include "components/metrics/metrics_log.h" namespace metrics { class ReportingInfo; // MetricsLogUploader is an abstract base class for uploading UMA logs on behalf // of MetricsService. class MetricsLogUploader { … }; } // namespace metrics #endif // COMPONENTS_METRICS_METRICS_LOG_UPLOADER_H_