// 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_AUTOFILL_CORE_BROWSER_PAYMENTS_OFFER_NOTIFICATION_HANDLER_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_OFFER_NOTIFICATION_HANDLER_H_ #include "base/containers/flat_set.h" #include "base/memory/raw_ref.h" #include "url/gurl.h" namespace autofill { class AutofillClient; class AutofillOfferManager; // The class to handle actions related to the offer notifications. It is owned // by the AutofillOfferManager and it is one per browser context. class OfferNotificationHandler { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_PAYMENTS_OFFER_NOTIFICATION_HANDLER_H_