diff options
Diffstat (limited to 'views/controls/link.cc')
-rw-r--r-- | views/controls/link.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/controls/link.cc b/views/controls/link.cc index 75b1043..e83c0cd 100644 --- a/views/controls/link.cc +++ b/views/controls/link.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -158,8 +158,8 @@ void Link::SetEnabled(bool f) { } } -gfx::NativeCursor Link::GetCursorForPoint(Event::EventType event_type, int x, - int y) { +gfx::NativeCursor Link::GetCursorForPoint(Event::EventType event_type, + const gfx::Point& p) { if (!enabled_) return NULL; #if defined(OS_WIN) |