// Copyright 2018 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_NOTIFICATION_BACKGROUND_PAINTER_H_ #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_BACKGROUND_PAINTER_H_ #include "ui/message_center/message_center_export.h" #include "ui/views/painter.h" namespace message_center { // Background Painter for notification. This is for notifications with rounded // corners inside the unified message center. This draws the rectangle with // rounded corners. class MESSAGE_CENTER_EXPORT NotificationBackgroundPainter : public views::Painter { … }; } // namespace message_center #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_BACKGROUND_PAINTER_H_