reporting_cache_observer.cc 756 B

123456789101112131415161718192021222324
  1. // Copyright 2017 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "net/reporting/reporting_cache_observer.h"
  5. namespace net {
  6. void ReportingCacheObserver::OnReportsUpdated() {}
  7. void ReportingCacheObserver::OnReportAdded(const ReportingReport* report) {}
  8. void ReportingCacheObserver::OnReportUpdated(const ReportingReport* report) {}
  9. void ReportingCacheObserver::OnClientsUpdated() {}
  10. void ReportingCacheObserver::OnEndpointsUpdatedForOrigin(
  11. const std::vector<ReportingEndpoint>& endpoints) {}
  12. ReportingCacheObserver::ReportingCacheObserver() = default;
  13. ReportingCacheObserver::~ReportingCacheObserver() = default;
  14. } // namespace net