| 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" | 11 #include "base/containers/scoped_ptr_map.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/scoped_vector.h" | |
| 14 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 15 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 16 #include "base/timer/timer.h" | 15 #include "base/timer/timer.h" |
| 17 #include "ui/message_center/message_center.h" | 16 #include "ui/message_center/message_center.h" |
| 18 #include "ui/message_center/message_center_observer.h" | 17 #include "ui/message_center/message_center_observer.h" |
| 19 #include "ui/message_center/message_center_types.h" | 18 #include "ui/message_center/message_center_types.h" |
| 20 #include "ui/message_center/notification_blocker.h" | 19 #include "ui/message_center/notification_blocker.h" |
| 21 #include "ui/message_center/notifier_settings.h" | 20 #include "ui/message_center/notifier_settings.h" |
| 22 | 21 |
| 23 namespace message_center { | 22 namespace message_center { |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 // Queue for the notifications to delay the addition/updates when the message | 222 // Queue for the notifications to delay the addition/updates when the message |
| 224 // center is visible. | 223 // center is visible. |
| 225 scoped_ptr<internal::ChangeQueue> notification_queue_; | 224 scoped_ptr<internal::ChangeQueue> notification_queue_; |
| 226 | 225 |
| 227 DISALLOW_COPY_AND_ASSIGN(MessageCenterImpl); | 226 DISALLOW_COPY_AND_ASSIGN(MessageCenterImpl); |
| 228 }; | 227 }; |
| 229 | 228 |
| 230 } // namespace message_center | 229 } // namespace message_center |
| 231 | 230 |
| 232 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_H_ | 231 #endif // UI_MESSAGE_CENTER_MESSAGE_CENTER_H_ |
| OLD | NEW |