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 "ui/message_center/message_center_export.h" | 11 #include "ui/message_center/message_center_export.h" |
11 #include "ui/message_center/views/message_view.h" | 12 #include "ui/message_center/views/message_view.h" |
12 #include "ui/views/view_targeter_delegate.h" | 13 #include "ui/views/view_targeter_delegate.h" |
13 | 14 |
14 class GURL; | 15 class GURL; |
15 | 16 |
16 namespace views { | 17 namespace views { |
17 class ProgressBar; | 18 class ProgressBar; |
18 } | 19 } |
19 | 20 |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 ProportionalImageView* image_view_; | 126 ProportionalImageView* image_view_; |
126 views::ProgressBar* progress_bar_view_; | 127 views::ProgressBar* progress_bar_view_; |
127 std::vector<NotificationButton*> action_buttons_; | 128 std::vector<NotificationButton*> action_buttons_; |
128 std::vector<views::View*> separators_; | 129 std::vector<views::View*> separators_; |
129 | 130 |
130 DISALLOW_COPY_AND_ASSIGN(NotificationView); | 131 DISALLOW_COPY_AND_ASSIGN(NotificationView); |
131 }; | 132 }; |
132 | 133 |
133 } // namespace message_center | 134 } // namespace message_center |
134 | 135 |
135 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ | 136 #endif // UI_MESSAGE_CENTER_VIEWS_NOTIFICATION_VIEW_H_ |
OLD | NEW |