// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_TOASTS_API_TOAST_REGISTRY_H_ #define CHROME_BROWSER_UI_TOASTS_API_TOAST_REGISTRY_H_ #include <map> #include <memory> class ToastSpecification; enum class ToastId; // The ToastRegistry keeps track of all registered ToastIds and the // corresponding ToastSpecifications. class ToastRegistry { … }; #endif // CHROME_BROWSER_UI_TOASTS_API_TOAST_REGISTRY_H_