| 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_MD_H_ | 5 #ifndef UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ |
| 6 #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ | 6 #define UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 views::View* left_content_ = nullptr; | 91 views::View* left_content_ = nullptr; |
| 92 views::View* right_content_ = nullptr; | 92 views::View* right_content_ = nullptr; |
| 93 | 93 |
| 94 // Views which are dinamicallly created inside view hierarchy. | 94 // Views which are dinamicallly created inside view hierarchy. |
| 95 views::Label* title_view_ = nullptr; | 95 views::Label* title_view_ = nullptr; |
| 96 BoundedLabel* message_view_ = nullptr; | 96 BoundedLabel* message_view_ = nullptr; |
| 97 ProportionalImageView* icon_view_ = nullptr; | 97 ProportionalImageView* icon_view_ = nullptr; |
| 98 views::View* image_container_ = nullptr; | 98 views::View* image_container_ = nullptr; |
| 99 ProportionalImageView* image_view_ = nullptr; | 99 ProportionalImageView* image_view_ = nullptr; |
| 100 std::vector<views::LabelButton*> action_buttons_; | 100 std::vector<views::LabelButton*> action_buttons_; |
| 101 std::vector<views::View*> item_views_; |
| 101 | 102 |
| 102 DISALLOW_COPY_AND_ASSIGN(NotificationViewMD); | 103 DISALLOW_COPY_AND_ASSIGN(NotificationViewMD); |
| 103 }; | 104 }; |
| 104 | 105 |
| 105 } // namespace message_center | 106 } // namespace message_center |
| 106 | 107 |
| 107 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ | 108 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ |
| OLD | NEW |