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

Side by Side Diff: ui/arc/notification/arc_notification_manager_unittest.cc

Issue 2598963005: Include-what-you-use for WrapUnique/MakeUnique. (Closed)
Patch Set: restore order of includes in x11_topmost_window_finder_interactive_uitest.cc Created 3 years, 12 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 <map> 5 #include <map>
6 #include <memory> 6 #include <memory>
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/memory/ptr_util.h"
11 #include "base/message_loop/message_loop.h" 12 #include "base/message_loop/message_loop.h"
12 #include "base/run_loop.h" 13 #include "base/run_loop.h"
13 #include "components/arc/arc_bridge_service.h" 14 #include "components/arc/arc_bridge_service.h"
14 #include "components/arc/instance_holder.h" 15 #include "components/arc/instance_holder.h"
15 #include "components/arc/test/fake_notifications_instance.h" 16 #include "components/arc/test/fake_notifications_instance.h"
16 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
17 #include "ui/arc/notification/arc_notification_manager.h" 18 #include "ui/arc/notification/arc_notification_manager.h"
18 #include "ui/message_center/fake_message_center.h" 19 #include "ui/message_center/fake_message_center.h"
19 20
20 namespace arc { 21 namespace arc {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 CreateNotificationWithKey("notification2"); 176 CreateNotificationWithKey("notification2");
176 CreateNotificationWithKey("notification3"); 177 CreateNotificationWithKey("notification3");
177 EXPECT_EQ(3u, message_center()->GetVisibleNotifications().size()); 178 EXPECT_EQ(3u, message_center()->GetVisibleNotifications().size());
178 179
179 arc_notification_manager()->OnInstanceClosed(); 180 arc_notification_manager()->OnInstanceClosed();
180 181
181 EXPECT_EQ(0u, message_center()->GetVisibleNotifications().size()); 182 EXPECT_EQ(0u, message_center()->GetVisibleNotifications().size());
182 } 183 }
183 184
184 } // namespace arc 185 } // namespace arc
OLDNEW
« no previous file with comments | « ui/arc/notification/arc_custom_notification_view.cc ('k') | ui/aura/gestures/gesture_recognizer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698