// 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_SPECIFICATION_H_ #define CHROME_BROWSER_UI_TOASTS_API_TOAST_SPECIFICATION_H_ #include <memory> #include <optional> #include "base/functional/callback.h" #include "base/functional/callback_forward.h" #include "base/memory/raw_ref.h" #include "base/types/pass_key.h" #include "ui/base/models/simple_menu_model.h" #include "ui/gfx/vector_icon_types.h" // ToastSpecification details what the toast should contain when shown. class ToastSpecification { … }; #endif // CHROME_BROWSER_UI_TOASTS_API_TOAST_SPECIFICATION_H_