Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(997)

Side by Side Diff: ui/message_center/message_center_impl.h

Issue 1307643003: IWYU for base/memory/scoped_vector.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « ui/events/ozone/evdev/touch_event_converter_evdev_unittest.cc ('k') | ui/ozone/platform/drm/gpu/drm_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698