Chromium Code Reviews| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 | 101 |
| 102 std::vector<views::View*> item_views_; | |
|
fukino
2017/06/13 04:27:09
nit: Remove the blank line above, since item_views
tetsui
2017/06/13 04:55:03
Done.
| |
| 103 | |
| 102 DISALLOW_COPY_AND_ASSIGN(NotificationViewMD); | 104 DISALLOW_COPY_AND_ASSIGN(NotificationViewMD); |
| 103 }; | 105 }; |
| 104 | 106 |
| 105 } // namespace message_center | 107 } // namespace message_center |
| 106 | 108 |
| 107 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ | 109 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_MD_H_ |
| OLD | NEW |