// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/reporting/reporting_policy.h" #include "base/no_destructor.h" #include "base/time/time.h" namespace net { namespace { ReportingPolicy* policy_for_testing = …; } // namespace // static std::unique_ptr<ReportingPolicy> ReportingPolicy::Create() { … } // static void ReportingPolicy::UsePolicyForTesting(const ReportingPolicy& policy) { … } ReportingPolicy::ReportingPolicy() { … } ReportingPolicy::ReportingPolicy(const ReportingPolicy& other) = default; ReportingPolicy::~ReportingPolicy() = default; } // namespace net