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

Unified Diff: webkit/glue/webcursor_win.cc

Issue 6591105: Implement the grab/grabbing cursors (for Mac/GTK).... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 10 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
Index: webkit/glue/webcursor_win.cc
===================================================================
--- webkit/glue/webcursor_win.cc (revision 76543)
+++ webkit/glue/webcursor_win.cc (working copy)
@@ -96,6 +96,11 @@
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:
+ case WebCursorInfo::TypeGrabbing:
+ return IDC_ARROW;
}
NOTREACHED();
return NULL;

Powered by Google App Engine
This is Rietveld 408576698