OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include "ash/common/system/chromeos/screen_security/screen_tray_item.h" | 5 #include "ash/system/screen_security/screen_tray_item.h" |
6 | 6 |
7 #include "ash/common/system/chromeos/screen_security/screen_capture_tray_item.h" | |
8 #include "ash/common/system/chromeos/screen_security/screen_share_tray_item.h" | |
9 #include "ash/common/system/tray/system_tray_notifier.h" | |
10 #include "ash/common/system/tray/tray_item_view.h" | |
11 #include "ash/common/test/ash_test.h" | 7 #include "ash/common/test/ash_test.h" |
12 #include "ash/common/wm_shell.h" | 8 #include "ash/common/wm_shell.h" |
| 9 #include "ash/system/screen_security/screen_capture_tray_item.h" |
| 10 #include "ash/system/screen_security/screen_share_tray_item.h" |
| 11 #include "ash/system/tray/system_tray_notifier.h" |
| 12 #include "ash/system/tray/tray_item_view.h" |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
16 #include "ui/events/event.h" | 16 #include "ui/events/event.h" |
17 #include "ui/events/event_utils.h" | 17 #include "ui/events/event_utils.h" |
18 #include "ui/gfx/geometry/point.h" | 18 #include "ui/gfx/geometry/point.h" |
19 #include "ui/message_center/message_center.h" | 19 #include "ui/message_center/message_center.h" |
20 #include "ui/views/view.h" | 20 #include "ui/views/view.h" |
21 | 21 |
22 namespace ash { | 22 namespace ash { |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 | 214 |
215 TEST_F(ScreenCaptureTest, SystemTrayInteraction) { | 215 TEST_F(ScreenCaptureTest, SystemTrayInteraction) { |
216 TestSystemTrayInteraction(this); | 216 TestSystemTrayInteraction(this); |
217 } | 217 } |
218 | 218 |
219 TEST_F(ScreenShareTest, SystemTrayInteraction) { | 219 TEST_F(ScreenShareTest, SystemTrayInteraction) { |
220 TestSystemTrayInteraction(this); | 220 TestSystemTrayInteraction(this); |
221 } | 221 } |
222 | 222 |
223 } // namespace ash | 223 } // namespace ash |
OLD | NEW |