Index: ash/wm/window_manager_unittest.cc |
diff --git a/ash/wm/window_manager_unittest.cc b/ash/wm/window_manager_unittest.cc |
index 9351cc76b332b889394394d95e99e0c8b83c5036..221311df68210f8e92356010f07bfb3303a06a77 100644 |
--- a/ash/wm/window_manager_unittest.cc |
+++ b/ash/wm/window_manager_unittest.cc |
@@ -596,7 +596,7 @@ TEST_F(WindowManagerTest, MAYBE_TransformActivate) { |
w1->Show(); |
gfx::Point miss_point(5, 5); |
- transform.TransformPoint(miss_point); |
+ transform.TransformPoint(&miss_point); |
ui::MouseEvent mouseev1(ui::ET_MOUSE_PRESSED, |
miss_point, |
miss_point, |
@@ -610,7 +610,7 @@ TEST_F(WindowManagerTest, MAYBE_TransformActivate) { |
root_window->AsRootWindowHostDelegate()->OnHostMouseEvent(&mouseup); |
gfx::Point hit_point(5, 15); |
- transform.TransformPoint(hit_point); |
+ transform.TransformPoint(&hit_point); |
ui::MouseEvent mouseev2(ui::ET_MOUSE_PRESSED, |
hit_point, |
hit_point, |