// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "load_cdm_uma_helper.h" #include <string> #include "base/metrics/histogram_functions.h" #include "base/native_library.h" #include "base/time/time.h" namespace media { void ReportLoadResult(const std::string& uma_prefix, CdmLoadResult load_result) { … } void ReportLoadErrorCode(const std::string& uma_prefix, const base::NativeLibraryLoadError* error) { … } void ReportLoadTime(const std::string& uma_prefix, const base::TimeDelta load_time) { … } } // namespace media