Index: ui/views/controls/single_split_view.cc |
=================================================================== |
--- ui/views/controls/single_split_view.cc (revision 151406) |
+++ ui/views/controls/single_split_view.cc (working copy) |
@@ -90,7 +90,7 @@ |
return gfx::Size(width, height); |
} |
-gfx::NativeCursor SingleSplitView::GetCursor(const MouseEvent& event) { |
+gfx::NativeCursor SingleSplitView::GetCursor(const ui::MouseEvent& event) { |
if (!IsPointInDivider(event.location())) |
return gfx::kNullCursor; |
#if defined(USE_AURA) |
@@ -149,7 +149,7 @@ |
accessible_name_ = name; |
} |
-bool SingleSplitView::OnMousePressed(const MouseEvent& event) { |
+bool SingleSplitView::OnMousePressed(const ui::MouseEvent& event) { |
if (!IsPointInDivider(event.location())) |
return false; |
drag_info_.initial_mouse_offset = GetPrimaryAxisSize(event.x(), event.y()); |
@@ -158,7 +158,7 @@ |
return true; |
} |
-bool SingleSplitView::OnMouseDragged(const MouseEvent& event) { |
+bool SingleSplitView::OnMouseDragged(const ui::MouseEvent& event) { |
if (child_count() < 2) |
return false; |