| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <list> | 10 #include <list> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.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_blocker.h" | 17 #include "ui/message_center/notification_blocker.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; | |
| 22 class TimeDelta; | 21 class TimeDelta; |
| 23 } | 22 } |
| 24 | 23 |
| 25 namespace gfx { | 24 namespace gfx { |
| 26 class Image; | 25 class Image; |
| 27 } | 26 } |
| 28 | 27 |
| 29 namespace message_center { | 28 namespace message_center { |
| 30 | 29 |
| 31 namespace test { | 30 namespace test { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 MessageCenter* message_center_; // owner | 162 MessageCenter* message_center_; // owner |
| 164 OwnedNotifications notifications_; | 163 OwnedNotifications notifications_; |
| 165 bool quiet_mode_; | 164 bool quiet_mode_; |
| 166 | 165 |
| 167 DISALLOW_COPY_AND_ASSIGN(NotificationList); | 166 DISALLOW_COPY_AND_ASSIGN(NotificationList); |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace message_center | 169 } // namespace message_center |
| 171 | 170 |
| 172 #endif // UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ | 171 #endif // UI_MESSAGE_CENTER_NOTIFICATION_LIST_H_ |
| OLD | NEW |