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

Unified Diff: ash/wm/root_window_event_filter.cc

Issue 9463003: aura-x11: Add custom web cursor support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 9 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 | « ash/wm/partial_screenshot_view.cc ('k') | ash/wm/root_window_event_filter_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/root_window_event_filter.cc
diff --git a/ash/wm/root_window_event_filter.cc b/ash/wm/root_window_event_filter.cc
index 4c52320df23026bbbc47e05d41bf6975577ff9e1..822dfe66cdb61f2c9917ae0e75af054132f3aedf 100644
--- a/ash/wm/root_window_event_filter.cc
+++ b/ash/wm/root_window_event_filter.cc
@@ -46,23 +46,23 @@ gfx::NativeCursor RootWindowEventFilter::CursorForWindowComponent(
int window_component) {
switch (window_component) {
case HTBOTTOM:
- return aura::kCursorSouthResize;
+ return ui::kCursorSouthResize;
case HTBOTTOMLEFT:
- return aura::kCursorSouthWestResize;
+ return ui::kCursorSouthWestResize;
case HTBOTTOMRIGHT:
- return aura::kCursorSouthEastResize;
+ return ui::kCursorSouthEastResize;
case HTLEFT:
- return aura::kCursorWestResize;
+ return ui::kCursorWestResize;
case HTRIGHT:
- return aura::kCursorEastResize;
+ return ui::kCursorEastResize;
case HTTOP:
- return aura::kCursorNorthResize;
+ return ui::kCursorNorthResize;
case HTTOPLEFT:
- return aura::kCursorNorthWestResize;
+ return ui::kCursorNorthWestResize;
case HTTOPRIGHT:
- return aura::kCursorNorthEastResize;
+ return ui::kCursorNorthEastResize;
default:
- return aura::kCursorNull;
+ return ui::kCursorNull;
}
}
« no previous file with comments | « ash/wm/partial_screenshot_view.cc ('k') | ash/wm/root_window_event_filter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698