diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 18:07:48 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-25 18:07:48 +0000 |
commit | 81cf6fe4376fd9d89cb85769374119a1482967ab (patch) | |
tree | 0c17e6113f47c85c58aafe4608d59278a61800ee /webkit/glue/webcursor_win.cc | |
parent | 378b2758f6bfe6c5f7796d98bb987113d613bb0d (diff) | |
download | chromium_src-81cf6fe4376fd9d89cb85769374119a1482967ab.zip chromium_src-81cf6fe4376fd9d89cb85769374119a1482967ab.tar.gz chromium_src-81cf6fe4376fd9d89cb85769374119a1482967ab.tar.bz2 |
Revert 148355 - Add a hand grab and grabbing cursor
WebKit and Pepper need this, both define it as a valid image
TEST= http://trac.webkit.org/export/37902/trunk/WebCore/manual-tests/cursor.html and hover over "out grab" and "grabbing". You should see an open and closed hand cursor, respectively.
BUG=74699
Review URL: https://chromiumcodereview.appspot.com/10807090
TBR=brettw@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10832015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148363 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcursor_win.cc')
-rw-r--r-- | webkit/glue/webcursor_win.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webkit/glue/webcursor_win.cc b/webkit/glue/webcursor_win.cc index c12813e..9b334a8 100644 --- a/webkit/glue/webcursor_win.cc +++ b/webkit/glue/webcursor_win.cc @@ -96,10 +96,11 @@ static LPCWSTR ToCursorID(WebCursorInfo::Type type) { return MAKEINTRESOURCE(IDC_ZOOMIN); case WebCursorInfo::TypeZoomOut: return MAKEINTRESOURCE(IDC_ZOOMOUT); + // TODO(avi): get cursor images for grab/grabbing + // http://crbug.com/74699 case WebCursorInfo::TypeGrab: - return MAKEINTRESOURCE(IDC_HAND_GRAB); case WebCursorInfo::TypeGrabbing: - return MAKEINTRESOURCE(IDC_HAND_GRABBING); + return IDC_ARROW; } NOTREACHED(); return NULL; |