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

Unified Diff: ash/shell.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/shell.cc
diff --git a/ash/shell.cc b/ash/shell.cc
index 9bc373d2203cccc5bd689a37ffd133162aae4285..fb70b3364d1f3f737d763ba0e799573a8e963552 100644
--- a/ash/shell.cc
+++ b/ash/shell.cc
@@ -1067,7 +1067,7 @@ void Shell::Init(const ShellInitParams& init_params) {
if (cursor_manager_) {
if (initially_hide_cursor_)
cursor_manager_->HideCursor();
- cursor_manager_->SetCursor(ui::kCursorPointer);
+ cursor_manager_->SetCursor(ui::CursorType::POINTER);
}
power_event_observer_.reset(new PowerEventObserver());

Powered by Google App Engine
This is Rietveld 408576698