Index: ash/display/display_controller_unittest.cc |
diff --git a/ash/display/display_controller_unittest.cc b/ash/display/display_controller_unittest.cc |
index 5024ef9fbb8a6b34a207bc094c3ced08ce3dd0d3..5ff0d7ec2ab30e881515974bf72503981f22c2ea 100644 |
--- a/ash/display/display_controller_unittest.cc |
+++ b/ash/display/display_controller_unittest.cc |
@@ -891,12 +891,12 @@ TEST_F(DisplayControllerTest, OverscanInsets) { |
UpdateDisplay("400x300*2,600x400/o"); |
root_windows = Shell::GetAllRootWindows(); |
gfx::Point point; |
- Shell::GetAllRootWindows()[1]->GetRootTransform().TransformPoint(point); |
+ Shell::GetAllRootWindows()[1]->GetRootTransform().TransformPoint(&point); |
EXPECT_EQ("15,10", point.ToString()); |
display_controller->SwapPrimaryDisplay(); |
point.SetPoint(0, 0); |
- Shell::GetAllRootWindows()[1]->GetRootTransform().TransformPoint(point); |
+ Shell::GetAllRootWindows()[1]->GetRootTransform().TransformPoint(&point); |
EXPECT_EQ("15,10", point.ToString()); |
Shell::GetInstance()->RemovePreTargetHandler(&event_handler); |