xref: /aosp_15_r20/external/cronet/net/reporting/reporting_cache.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1 // Copyright 2017 The Chromium Authors
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/reporting/reporting_cache.h"
6 
7 #include "net/reporting/reporting_cache_impl.h"
8 #include "net/reporting/reporting_context.h"
9 
10 namespace net {
11 
12 // static
Create(ReportingContext * context)13 std::unique_ptr<ReportingCache> ReportingCache::Create(
14     ReportingContext* context) {
15   return std::make_unique<ReportingCacheImpl>(context);
16 }
17 
18 ReportingCache::~ReportingCache() = default;
19 
20 }  // namespace net
21