diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 23:22:06 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 23:22:06 +0000 |
commit | 5dd07869cdea6e7853f6f8dc513925670e66b364 (patch) | |
tree | 32cbc5773c13315127e23b2ac70b3fe3d076ae5a /webkit/tools | |
parent | ae95538ad7b9812efb722eae25c72bb80ef67ac6 (diff) | |
download | chromium_src-5dd07869cdea6e7853f6f8dc513925670e66b364.zip chromium_src-5dd07869cdea6e7853f6f8dc513925670e66b364.tar.gz chromium_src-5dd07869cdea6e7853f6f8dc513925670e66b364.tar.bz2 |
Fix Mac custom cursor color.
BUG=114598
TEST=as in bug
Review URL: http://codereview.chromium.org/9419010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122386 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools')
-rw-r--r-- | webkit/tools/test_shell/mac/test_webview_delegate.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/mac/test_webview_delegate.mm b/webkit/tools/test_shell/mac/test_webview_delegate.mm index dce18b5..e0d3f38 100644 --- a/webkit/tools/test_shell/mac/test_webview_delegate.mm +++ b/webkit/tools/test_shell/mac/test_webview_delegate.mm @@ -103,7 +103,7 @@ void TestWebViewDelegate::closeWidgetSoon() { } void TestWebViewDelegate::didChangeCursor(const WebCursorInfo& cursor_info) { - NSCursor* ns_cursor = WebCursor(cursor_info).GetCursor(); + NSCursor* ns_cursor = WebCursor(cursor_info).GetNativeCursor(); [ns_cursor set]; } |