xref: /aosp_15_r20/external/cronet/net/reporting/reporting_cache_observer.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_observer.h"
6 
7 namespace net {
8 
OnReportsUpdated()9 void ReportingCacheObserver::OnReportsUpdated() {}
10 
OnReportAdded(const ReportingReport * report)11 void ReportingCacheObserver::OnReportAdded(const ReportingReport* report) {}
12 
OnReportUpdated(const ReportingReport * report)13 void ReportingCacheObserver::OnReportUpdated(const ReportingReport* report) {}
14 
OnClientsUpdated()15 void ReportingCacheObserver::OnClientsUpdated() {}
16 
OnEndpointsUpdatedForOrigin(const std::vector<ReportingEndpoint> & endpoints)17 void ReportingCacheObserver::OnEndpointsUpdatedForOrigin(
18     const std::vector<ReportingEndpoint>& endpoints) {}
19 
20 ReportingCacheObserver::ReportingCacheObserver() = default;
21 
22 ReportingCacheObserver::~ReportingCacheObserver() = default;
23 
24 }  // namespace net
25