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

Unified Diff: ash/display/mirror_window_controller_unittest.cc

Issue 1924703002: Rename gfx::Display/Screen to display::Display/Screen in ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « ash/display/mirror_window_controller.cc ('k') | ash/display/resolution_notification_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/display/mirror_window_controller_unittest.cc
diff --git a/ash/display/mirror_window_controller_unittest.cc b/ash/display/mirror_window_controller_unittest.cc
index 500448d3f7c3288aef4079e0645b6f4f95e6f1d5..a211c910224f7f4f40c3bbc5f8d3cd2209509752 100644
--- a/ash/display/mirror_window_controller_unittest.cc
+++ b/ash/display/mirror_window_controller_unittest.cc
@@ -227,7 +227,8 @@ TEST_F(MirrorWindowControllerTest, MAYBE_MirrorCursorMoveOnEnter) {
EXPECT_EQ("300,200", env->last_mouse_location().ToString());
test::CursorManagerTestApi cursor_test_api(shell->cursor_manager());
EXPECT_EQ(1.0f, cursor_test_api.GetCurrentCursor().device_scale_factor());
- EXPECT_EQ(gfx::Display::ROTATE_0, cursor_test_api.GetCurrentCursorRotation());
+ EXPECT_EQ(display::Display::ROTATE_0,
+ cursor_test_api.GetCurrentCursorRotation());
shell->display_manager()->SetMultiDisplayMode(DisplayManager::MIRRORING);
UpdateDisplay("400x400*2/r,400x400");
@@ -237,7 +238,7 @@ TEST_F(MirrorWindowControllerTest, MAYBE_MirrorCursorMoveOnEnter) {
// Check real cursor's position and properties.
EXPECT_EQ("100,100", env->last_mouse_location().ToString());
EXPECT_EQ(2.0f, cursor_test_api.GetCurrentCursor().device_scale_factor());
- EXPECT_EQ(gfx::Display::ROTATE_90,
+ EXPECT_EQ(display::Display::ROTATE_90,
cursor_test_api.GetCurrentCursorRotation());
// Check mirrored cursor's location.
« no previous file with comments | « ash/display/mirror_window_controller.cc ('k') | ash/display/resolution_notification_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698