1 // Copyright 2019 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 #ifndef NET_NETWORK_ERROR_LOGGING_PERSISTENT_REPORTING_AND_NEL_STORE_H_ 6 #define NET_NETWORK_ERROR_LOGGING_PERSISTENT_REPORTING_AND_NEL_STORE_H_ 7 8 #include "net/network_error_logging/network_error_logging_service.h" 9 #include "net/reporting/reporting_cache.h" 10 11 namespace net { 12 13 // Stores Reporting reports, Reporting clients, and NEL policies. 14 class NET_EXPORT PersistentReportingAndNelStore 15 : public ReportingCache::PersistentReportingStore, 16 public NetworkErrorLoggingService::PersistentNelStore {}; 17 18 } // namespace net 19 20 #endif // NET_NETWORK_ERROR_LOGGING_PERSISTENT_REPORTING_AND_NEL_STORE_H_ 21