Commit 1d9fb28f authored by jochen@chromium.org's avatar jochen@chromium.org

Remove NOTIMPLEMENTED from webcursor_gtk.cc

We reach this all the time, and all it does is spam the logs

R=jamesr@chromium.org
NOTRY=true

Review URL: https://chromiumcodereview.appspot.com/15994007

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203925 0039d316-1c4b-4281-b951-d872f2087c98
parent b056392f
...@@ -86,7 +86,7 @@ int WebCursor::GetCursorType() const { ...@@ -86,7 +86,7 @@ int WebCursor::GetCursorType() const {
case WebCursorInfo::TypeNorthEastSouthWestResize: case WebCursorInfo::TypeNorthEastSouthWestResize:
case WebCursorInfo::TypeNorthWestSouthEastResize: case WebCursorInfo::TypeNorthWestSouthEastResize:
// There isn't really a useful cursor available for these. // There isn't really a useful cursor available for these.
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeColumnResize: case WebCursorInfo::TypeColumnResize:
return GDK_SB_H_DOUBLE_ARROW; // TODO(evanm): is this correct? return GDK_SB_H_DOUBLE_ARROW; // TODO(evanm): is this correct?
case WebCursorInfo::TypeRowResize: case WebCursorInfo::TypeRowResize:
...@@ -112,23 +112,23 @@ int WebCursor::GetCursorType() const { ...@@ -112,23 +112,23 @@ int WebCursor::GetCursorType() const {
case WebCursorInfo::TypeMove: case WebCursorInfo::TypeMove:
return GDK_FLEUR; return GDK_FLEUR;
case WebCursorInfo::TypeVerticalText: case WebCursorInfo::TypeVerticalText:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeCell: case WebCursorInfo::TypeCell:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeContextMenu: case WebCursorInfo::TypeContextMenu:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeAlias: case WebCursorInfo::TypeAlias:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeProgress: case WebCursorInfo::TypeProgress:
return GDK_WATCH; return GDK_WATCH;
case WebCursorInfo::TypeNoDrop: case WebCursorInfo::TypeNoDrop:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeCopy: case WebCursorInfo::TypeCopy:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeNone: case WebCursorInfo::TypeNone:
return GDK_BLANK_CURSOR; return GDK_BLANK_CURSOR;
case WebCursorInfo::TypeNotAllowed: case WebCursorInfo::TypeNotAllowed:
NOTIMPLEMENTED(); return GDK_LAST_CURSOR; return GDK_LAST_CURSOR;
case WebCursorInfo::TypeZoomIn: case WebCursorInfo::TypeZoomIn:
case WebCursorInfo::TypeZoomOut: case WebCursorInfo::TypeZoomOut:
case WebCursorInfo::TypeGrab: case WebCursorInfo::TypeGrab:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment