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

Unified Diff: webkit/common/cursors/webcursor_gtk.cc

Issue 15994007: Remove NOTIMPLEMENTED from webcursor_gtk.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/cursors/webcursor_gtk.cc
diff --git a/webkit/common/cursors/webcursor_gtk.cc b/webkit/common/cursors/webcursor_gtk.cc
index 1faa371eb4d92f1594e38b74fdf7a44f504cbd72..993ab5cbbb0b1d6af98ccdcd4cd19a7006ce25c8 100644
--- a/webkit/common/cursors/webcursor_gtk.cc
+++ b/webkit/common/cursors/webcursor_gtk.cc
@@ -86,7 +86,7 @@ int WebCursor::GetCursorType() const {
case WebCursorInfo::TypeNorthEastSouthWestResize:
case WebCursorInfo::TypeNorthWestSouthEastResize:
// There isn't really a useful cursor available for these.
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeColumnResize:
return GDK_SB_H_DOUBLE_ARROW; // TODO(evanm): is this correct?
case WebCursorInfo::TypeRowResize:
@@ -112,23 +112,23 @@ int WebCursor::GetCursorType() const {
case WebCursorInfo::TypeMove:
return GDK_FLEUR;
case WebCursorInfo::TypeVerticalText:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeCell:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeContextMenu:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeAlias:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeProgress:
return GDK_WATCH;
case WebCursorInfo::TypeNoDrop:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeCopy:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeNone:
return GDK_BLANK_CURSOR;
case WebCursorInfo::TypeNotAllowed:
- NOTIMPLEMENTED(); return GDK_LAST_CURSOR;
+ return GDK_LAST_CURSOR;
case WebCursorInfo::TypeZoomIn:
case WebCursorInfo::TypeZoomOut:
case WebCursorInfo::TypeGrab:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698