Chromium Code Reviews| Index: ui/message_center/base_format_view.h |
| diff --git a/ui/message_center/base_format_view.h b/ui/message_center/base_format_view.h |
| deleted file mode 100644 |
| index fc04f2543c1b2d09d3c8db22cf63e9b1a31aae16..0000000000000000000000000000000000000000 |
| --- a/ui/message_center/base_format_view.h |
| +++ /dev/null |
| @@ -1,43 +0,0 @@ |
| -// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| -// Use of this source code is governed by a BSD-style license that can be |
| -// found in the LICENSE file. |
| - |
| -#ifndef UI_MESSAGE_CENTER_BASE_FORMAT_VIEW_H_ |
| -#define UI_MESSAGE_CENTER_BASE_FORMAT_VIEW_H_ |
| - |
| -#include "ui/message_center/message_view.h" |
| -#include "ui/message_center/notification_list.h" |
| - |
| -namespace views { |
| -class ImageView; |
| -class LabelButton; |
| -} |
| - |
| -namespace message_center { |
| - |
| -// A comprehensive message view. |
| -class BaseFormatView : public MessageView { |
| - public: |
| - BaseFormatView(NotificationList::Delegate* list_delegate, |
| - const NotificationList::Notification& notification); |
| - virtual ~BaseFormatView(); |
| - |
| - // MessageView |
| - virtual void SetUpView() OVERRIDE; |
| - |
| - // views::ButtonListener |
| - virtual void ButtonPressed(views::Button* sender, |
| - const ui::Event& event) OVERRIDE; |
| - |
| - protected: |
| - BaseFormatView(); |
| - |
| - views::LabelButton* button_one_; |
| - views::LabelButton* button_two_; |
| - |
| - DISALLOW_COPY_AND_ASSIGN(BaseFormatView); |
| -}; |
| - |
| -} // namespace message_center |
| - |
| -#endif // UI_MESSAGE_CENTER_BASE_FORMAT_VIEW_H_ |
|
dharcourt
2013/01/19 03:06:13
BaseFormatView replaced by NotificationView.
|