Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: webkit/glue/webcursor_win.cc

Issue 10807090: Add a hand grab and grabbing cursor (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/glue/resources/hand_grabbing.cur ('k') | webkit/glue/webkit_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webcursor_win.cc
===================================================================
--- webkit/glue/webcursor_win.cc (revision 148170)
+++ webkit/glue/webcursor_win.cc (working copy)
@@ -96,11 +96,10 @@
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 IDC_ARROW;
+ return MAKEINTRESOURCE(IDC_HAND_GRABBING);
}
NOTREACHED();
return NULL;
« no previous file with comments | « webkit/glue/resources/hand_grabbing.cur ('k') | webkit/glue/webkit_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698