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)13std::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