// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_DOMAIN_RELIABILITY_CONFIG_H_ #define COMPONENTS_DOMAIN_RELIABILITY_CONFIG_H_ #include <memory> #include <string> #include <string_view> #include <vector> #include "base/json/json_value_converter.h" #include "components/domain_reliability/domain_reliability_export.h" #include "url/gurl.h" #include "url/origin.h" namespace domain_reliability { // The per-origin configuration that controls which requests are measured and // reported, with what frequency, and where the beacons are uploaded. struct DOMAIN_RELIABILITY_EXPORT DomainReliabilityConfig { … }; } // namespace domain_reliability #endif // COMPONENTS_DOMAIN_RELIABILITY_CONFIG_H_