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

Unified Diff: ash/display/unified_mouse_warp_controller_unittest.cc

Issue 2270553002: Move ash::DisplayInfo to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build Created 4 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 side-by-side diff with in-line comments
Download patch
Index: ash/display/unified_mouse_warp_controller_unittest.cc
diff --git a/ash/display/unified_mouse_warp_controller_unittest.cc b/ash/display/unified_mouse_warp_controller_unittest.cc
index fe48dc5132e42fbc50ad107a649b4a7b12549c6b..2f347d2fdfec47dd9427ea2632fc1f1423cb817c 100644
--- a/ash/display/unified_mouse_warp_controller_unittest.cc
+++ b/ash/display/unified_mouse_warp_controller_unittest.cc
@@ -39,7 +39,8 @@ class UnifiedMouseWarpControllerTest : public test::AshTestBase {
gfx::Point* point_in_unified_host) {
DisplayManager* display_manager = Shell::GetInstance()->display_manager();
for (auto display : display_manager->software_mirroring_display_list()) {
- DisplayInfo info = display_manager->GetDisplayInfo(display.id());
+ ui::ManagedDisplayInfo info =
+ display_manager->GetDisplayInfo(display.id());
if (info.bounds_in_native().Contains(point_in_native)) {
*display_id = info.id();
*point_in_unified_host = point_in_native;

Powered by Google App Engine
This is Rietveld 408576698