// Copyright 2022 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_PAYMENTS_CORE_CSP_CHECKER_H_ #define COMPONENTS_PAYMENTS_CORE_CSP_CHECKER_H_ #include "base/functional/callback_forward.h" class GURL; namespace payments { // Interface for checking Content Security Policy (CSP). class CSPChecker { … }; } // namespace payments #endif // COMPONENTS_PAYMENTS_CORE_CSP_CHECKER_H_