// Copyright 2012 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_VIEW_H_ #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ #include "base/memory/raw_ptr.h" #include "ui/base/metadata/metadata_header_macros.h" #include "ui/message_center/message_center_export.h" #include "ui/message_center/views/notification_view_base.h" namespace views { class LabelButton; class RadioButton; } // namespace views namespace message_center { // Customized NotificationViewBase for notification on all platforms other // than ChromeOS. This view is used to displays all current types of // notification (web, basic, image, and list) except custom notification. class MESSAGE_CENTER_EXPORT NotificationView : public NotificationViewBase { … }; } // namespace message_center #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_