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

Unified Diff: views/controls/resize_area.cc

Issue 7850026: Aura under Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: White spaces Created 9 years, 3 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: views/controls/resize_area.cc
diff --git a/views/controls/resize_area.cc b/views/controls/resize_area.cc
index dd382860bf8b199bd9c9844f9b42796f47e5fabe..951c82db2d51e550e3ee5453f8d6e5e9e5795560 100644
--- a/views/controls/resize_area.cc
+++ b/views/controls/resize_area.cc
@@ -37,6 +37,9 @@ gfx::NativeCursor ResizeArea::GetCursor(const MouseEvent& event) {
#if defined(OS_WIN)
static HCURSOR g_resize_cursor = LoadCursor(NULL, IDC_SIZEWE);
return g_resize_cursor;
+#elif defined(USE_AURA)
+ // TODO(saintlou):
+ return NULL;
#elif defined(OS_LINUX)
return gfx::GetCursor(GDK_SB_H_DOUBLE_ARROW);
#endif

Powered by Google App Engine
This is Rietveld 408576698