Chromium Code Reviews| Index: webkit/glue/webcursor_win.cc |
| =================================================================== |
| --- webkit/glue/webcursor_win.cc (revision 76543) |
| +++ webkit/glue/webcursor_win.cc (working copy) |
| @@ -1,4 +1,4 @@ |
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Copyright (c) 2011 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. |
| @@ -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; |
|
viettrungluu
2011/03/02 21:10:10
Maybe a NOTIMPLEMENTED(), so we don't forget?
Avi (use Gerrit)
2011/03/02 21:11:35
This is a valid code path that can be triggered by
|
| } |
| NOTREACHED(); |
| return NULL; |