| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ | 5 #ifndef UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ |
| 6 #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ | 6 #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 BoundedLabel* message_view_; | 130 BoundedLabel* message_view_; |
| 131 BoundedLabel* context_message_view_; | 131 BoundedLabel* context_message_view_; |
| 132 views::ImageButton* settings_button_view_; | 132 views::ImageButton* settings_button_view_; |
| 133 std::vector<views::View*> item_views_; | 133 std::vector<views::View*> item_views_; |
| 134 ProportionalImageView* icon_view_; | 134 ProportionalImageView* icon_view_; |
| 135 views::View* bottom_view_; | 135 views::View* bottom_view_; |
| 136 views::View* image_container_; | 136 views::View* image_container_; |
| 137 ProportionalImageView* image_view_; | 137 ProportionalImageView* image_view_; |
| 138 NotificationProgressBarBase* progress_bar_view_; | 138 NotificationProgressBarBase* progress_bar_view_; |
| 139 std::vector<NotificationButton*> action_buttons_; | 139 std::vector<NotificationButton*> action_buttons_; |
| 140 scoped_ptr<views::ImageButton> close_button_; | 140 std::unique_ptr<views::ImageButton> close_button_; |
| 141 std::vector<views::View*> separators_; | 141 std::vector<views::View*> separators_; |
| 142 | 142 |
| 143 DISALLOW_COPY_AND_ASSIGN(NotificationView); | 143 DISALLOW_COPY_AND_ASSIGN(NotificationView); |
| 144 }; | 144 }; |
| 145 | 145 |
| 146 } // namespace message_center | 146 } // namespace message_center |
| 147 | 147 |
| 148 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ | 148 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ |
| OLD | NEW |