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

Side by Side Diff: ui/message_center/views/message_list_view.cc

Issue 2876013002: Add missing IWYU message_loop.h includes. (Closed)
Patch Set: fix upstream Created 3 years, 7 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) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 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 #include <algorithm> 5 #include <algorithm>
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/location.h" 8 #include "base/location.h"
9 #include "base/message_loop/message_loop.h"
9 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
10 #include "base/threading/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
11 #include "ui/gfx/animation/slide_animation.h" 12 #include "ui/gfx/animation/slide_animation.h"
12 #include "ui/message_center/message_center_style.h" 13 #include "ui/message_center/message_center_style.h"
13 #include "ui/message_center/message_center_switches.h" 14 #include "ui/message_center/message_center_switches.h"
14 #include "ui/message_center/views/message_center_view.h" 15 #include "ui/message_center/views/message_center_view.h"
15 #include "ui/message_center/views/message_list_view.h" 16 #include "ui/message_center/views/message_list_view.h"
16 #include "ui/message_center/views/message_view.h" 17 #include "ui/message_center/views/message_view.h"
17 #include "ui/views/background.h" 18 #include "ui/views/background.h"
18 #include "ui/views/border.h" 19 #include "ui/views/border.h"
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 base::TimeDelta::FromMilliseconds( 572 base::TimeDelta::FromMilliseconds(
572 kAnimateClearingNextNotificationDelayMS)); 573 kAnimateClearingNextNotificationDelayMS));
573 } 574 }
574 } 575 }
575 576
576 void MessageListView::SetRepositionTargetForTest(const gfx::Rect& target_rect) { 577 void MessageListView::SetRepositionTargetForTest(const gfx::Rect& target_rect) {
577 SetRepositionTarget(target_rect); 578 SetRepositionTarget(target_rect);
578 } 579 }
579 580
580 } // namespace message_center 581 } // namespace message_center
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698