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

Unified Diff: ash/wm/toplevel_window_event_handler.cc

Issue 2833163002: Change ui cursor identifiers to an enum class. (Closed)
Patch Set: Remove extranious ::ui:: Created 3 years, 8 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: ash/wm/toplevel_window_event_handler.cc
diff --git a/ash/wm/toplevel_window_event_handler.cc b/ash/wm/toplevel_window_event_handler.cc
index e115d77644d4a6382115d2b297eb551615569f35..d717cb6eada186514dcd62b29f7b2991ab87889e 100644
--- a/ash/wm/toplevel_window_event_handler.cc
+++ b/ash/wm/toplevel_window_event_handler.cc
@@ -70,7 +70,7 @@ aura::client::WindowMoveResult ToplevelWindowEventHandler::RunMoveLoop(
aura::client::CursorClient* cursor_client =
aura::client::GetCursorClient(root_window);
if (cursor_client)
- cursor_client->SetCursor(ui::kCursorPointer);
+ cursor_client->SetCursor(ui::CursorType::POINTER);
base::RunLoop run_loop;

Powered by Google App Engine
This is Rietveld 408576698