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_NOTIFICATION_LIST_H_ | 5 #ifndef UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ |
6 #define UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ | 6 #define UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "base/time.h" | 12 #include "base/time.h" |
13 #include "base/timer.h" | 13 #include "base/timer.h" |
14 #include "ui/gfx/image/image.h" | 14 #include "ui/gfx/image/image.h" |
15 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
16 #include "ui/message_center/message_center_export.h" | 16 #include "ui/message_center/message_center_export.h" |
17 #include "ui/message_center/notification.h" | 17 #include "ui/message_center/notification.h" |
18 #include "ui/message_center/notification_types.h" | 18 #include "ui/message_center/notification_types.h" |
19 | 19 |
20 namespace base { | 20 namespace base { |
21 class DictionaryValue; | 21 class DictionaryValue; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 size_t unread_count_; | 147 size_t unread_count_; |
148 bool quiet_mode_; | 148 bool quiet_mode_; |
149 scoped_ptr<base::OneShotTimer<NotificationList> > quiet_mode_timer_; | 149 scoped_ptr<base::OneShotTimer<NotificationList> > quiet_mode_timer_; |
150 | 150 |
151 DISALLOW_COPY_AND_ASSIGN(NotificationList); | 151 DISALLOW_COPY_AND_ASSIGN(NotificationList); |
152 }; | 152 }; |
153 | 153 |
154 } // namespace message_center | 154 } // namespace message_center |
155 | 155 |
156 #endif // UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ | 156 #endif // UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ |
OLD | NEW |