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_MESSAGE_VIEW_H_ | 5 #ifndef UI_MESSAGE_CENTER_VIEWS_MESSAGE_VIEW_H_ |
6 #define UI_MESSAGE_CENTER_VIEWS_MESSAGE_VIEW_H_ | 6 #define UI_MESSAGE_CENTER_VIEWS_MESSAGE_VIEW_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "third_party/skia/include/core/SkBitmap.h" | 12 #include "third_party/skia/include/core/SkBitmap.h" |
13 #include "third_party/skia/include/core/SkColor.h" | 13 #include "third_party/skia/include/core/SkColor.h" |
14 #include "ui/gfx/geometry/insets.h" | 14 #include "ui/gfx/geometry/insets.h" |
15 #include "ui/gfx/image/image.h" | 15 #include "ui/gfx/image/image.h" |
16 #include "ui/gfx/image/image_skia.h" | 16 #include "ui/gfx/image/image_skia.h" |
17 #include "ui/message_center/message_center_export.h" | 17 #include "ui/message_center/message_center_export.h" |
18 #include "ui/message_center/notification.h" | 18 #include "ui/message_center/notification.h" |
19 #include "ui/views/controls/button/button.h" | 19 #include "ui/views/controls/button/button.h" |
20 #include "ui/views/controls/slide_out_view.h" | 20 #include "ui/views/controls/slide_out_view.h" |
21 | 21 |
22 namespace ui { | |
23 class MenuModel; | |
24 } | |
25 | |
26 namespace views { | 22 namespace views { |
27 class ImageButton; | 23 class ImageButton; |
28 class ImageView; | 24 class ImageView; |
29 class Painter; | 25 class Painter; |
30 class ScrollView; | 26 class ScrollView; |
31 } | 27 } |
32 | 28 |
33 namespace message_center { | 29 namespace message_center { |
34 | 30 |
35 class MessageCenterController; | 31 class MessageCenterController; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 base::string16 display_source_; | 116 base::string16 display_source_; |
121 | 117 |
122 std::unique_ptr<views::Painter> focus_painter_; | 118 std::unique_ptr<views::Painter> focus_painter_; |
123 | 119 |
124 DISALLOW_COPY_AND_ASSIGN(MessageView); | 120 DISALLOW_COPY_AND_ASSIGN(MessageView); |
125 }; | 121 }; |
126 | 122 |
127 } // namespace message_center | 123 } // namespace message_center |
128 | 124 |
129 #endif // UI_MESSAGE_CENTER_VIEWS_MESSAGE_VIEW_H_ | 125 #endif // UI_MESSAGE_CENTER_VIEWS_MESSAGE_VIEW_H_ |
OLD | NEW |