// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_MESSAGE_CENTER_VIEWS_LARGE_IMAGE_VIEW_H_ #define UI_MESSAGE_CENTER_VIEWS_LARGE_IMAGE_VIEW_H_ #include "ui/gfx/geometry/size.h" #include "ui/gfx/image/image_skia.h" #include "ui/message_center/message_center_export.h" #include "ui/views/view.h" namespace gfx { class Canvas; } // namespace gfx namespace message_center { // An image container view for notifications. Exported for tests. class MESSAGE_CENTER_EXPORT LargeImageView : public views::View { … }; } // namespace message_center #endif // UI_MESSAGE_CENTER_VIEWS_LARGE_IMAGE_VIEW_H_