// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/metrics/custom_metrics_recorder.h" #include "base/check_op.h" namespace cc { namespace { CustomMetricRecorder* g_instance = …; } // namespace // static CustomMetricRecorder* CustomMetricRecorder::Get() { … } CustomMetricRecorder::CustomMetricRecorder() { … } CustomMetricRecorder::~CustomMetricRecorder() { … } } // namespace cc