| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_MESSAGE_CENTER_IMPL_H_ | 5 #ifndef UI_MESSAGE_CENTER_MESSAGE_CENTER_IMPL_H_ |
| 6 #define UI_MESSAGE_CENTER_MESSAGE_CENTER_IMPL_H_ | 6 #define UI_MESSAGE_CENTER_MESSAGE_CENTER_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/containers/scoped_ptr_map.h" | |
| 12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
| 14 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 15 #include "base/timer/timer.h" | 14 #include "base/timer/timer.h" |
| 16 #include "ui/message_center/message_center.h" | 15 #include "ui/message_center/message_center.h" |
| 17 #include "ui/message_center/message_center_observer.h" | 16 #include "ui/message_center/message_center_observer.h" |
| 18 #include "ui/message_center/message_center_types.h" | 17 #include "ui/message_center/message_center_types.h" |
| 19 #include "ui/message_center/notification_blocker.h" | 18 #include "ui/message_center/notification_blocker.h" |
| 20 #include "ui/message_center/notifier_settings.h" | 19 #include "ui/message_center/notifier_settings.h" |
| 21 #include "ui/message_center/popup_timer.h" | 20 #include "ui/message_center/popup_timer.h" |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // Queue for the notifications to delay the addition/updates when the message | 127 // Queue for the notifications to delay the addition/updates when the message |
| 129 // center is visible. | 128 // center is visible. |
| 130 scoped_ptr<internal::ChangeQueue> notification_queue_; | 129 scoped_ptr<internal::ChangeQueue> notification_queue_; |
| 131 | 130 |
| 132 DISALLOW_COPY_AND_ASSIGN(MessageCenterImpl); | 131 DISALLOW_COPY_AND_ASSIGN(MessageCenterImpl); |
| 133 }; | 132 }; |
| 134 | 133 |
| 135 } // namespace message_center | 134 } // namespace message_center |
| 136 | 135 |
| 137 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_H_ | 136 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_H_ |
| OLD | NEW |