summaryrefslogtreecommitdiffstats
path: root/views/widget/root_view_win.cc
diff options
context:
space:
mode:
Diffstat (limited to 'views/widget/root_view_win.cc')
-rw-r--r--views/widget/root_view_win.cc17
1 files changed, 0 insertions, 17 deletions
diff --git a/views/widget/root_view_win.cc b/views/widget/root_view_win.cc
index 14ca68a6..f5b315cb 100644
--- a/views/widget/root_view_win.cc
+++ b/views/widget/root_view_win.cc
@@ -12,23 +12,6 @@
namespace views {
-void RootView::UpdateCursor(const MouseEvent& e) {
- View *v = GetViewForPoint(e.location());
-
- if (v && v != this) {
- gfx::Point l(e.location());
- View::ConvertPointToView(this, v, &l);
- HCURSOR cursor = v->GetCursorForPoint(e.GetType(), l.x(), l.y());
- if (cursor) {
- ::SetCursor(cursor);
- return;
- }
- }
- if (previous_cursor_) {
- SetCursor(previous_cursor_);
- }
-}
-
void RootView::OnPaint(HWND hwnd) {
gfx::Rect original_dirty_region = GetScheduledPaintRectConstrainedToSize();
if (!original_dirty_region.IsEmpty()) {