| 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/system/chromeos/screen_security/screen_tray_item.h" | 5 #include "ash/system/chromeos/screen_security/screen_tray_item.h" |
| 6 | 6 |
| 7 #include "ash/common/system/tray/tray_item_view.h" |
| 7 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 8 #include "ash/system/chromeos/screen_security/screen_capture_tray_item.h" | 9 #include "ash/system/chromeos/screen_security/screen_capture_tray_item.h" |
| 9 #include "ash/system/chromeos/screen_security/screen_share_tray_item.h" | 10 #include "ash/system/chromeos/screen_security/screen_share_tray_item.h" |
| 10 #include "ash/system/tray/tray_item_view.h" | |
| 11 #include "ash/test/ash_test_base.h" | 11 #include "ash/test/ash_test_base.h" |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
| 14 #include "ui/events/event.h" | 14 #include "ui/events/event.h" |
| 15 #include "ui/events/event_utils.h" | 15 #include "ui/events/event_utils.h" |
| 16 #include "ui/gfx/geometry/point.h" | 16 #include "ui/gfx/geometry/point.h" |
| 17 #include "ui/message_center/message_center.h" | 17 #include "ui/message_center/message_center.h" |
| 18 #include "ui/views/view.h" | 18 #include "ui/views/view.h" |
| 19 | 19 |
| 20 namespace ash { | 20 namespace ash { |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 | 216 |
| 217 TEST_F(ScreenCaptureTest, SystemTrayInteraction) { | 217 TEST_F(ScreenCaptureTest, SystemTrayInteraction) { |
| 218 TestSystemTrayInteraction(this); | 218 TestSystemTrayInteraction(this); |
| 219 } | 219 } |
| 220 | 220 |
| 221 TEST_F(ScreenShareTest, SystemTrayInteraction) { | 221 TEST_F(ScreenShareTest, SystemTrayInteraction) { |
| 222 TestSystemTrayInteraction(this); | 222 TestSystemTrayInteraction(this); |
| 223 } | 223 } |
| 224 | 224 |
| 225 } // namespace ash | 225 } // namespace ash |
| OLD | NEW |