Index: extensions/shell/browser/shell_desktop_controller_aura.cc |
diff --git a/extensions/shell/browser/shell_desktop_controller_aura.cc b/extensions/shell/browser/shell_desktop_controller_aura.cc |
index dfbecf8906de9c3b4abe7edda2f1c785f7c88aad..8129da911a7f50c8e105a9a7092718b5f5afa2ed 100644 |
--- a/extensions/shell/browser/shell_desktop_controller_aura.cc |
+++ b/extensions/shell/browser/shell_desktop_controller_aura.cc |
@@ -128,7 +128,7 @@ class ShellNativeCursorManager : public wm::NativeCursorManager { |
if (visible) { |
SetCursor(delegate->GetCursor(), delegate); |
} else { |
- gfx::NativeCursor invisible_cursor(ui::kCursorNone); |
+ gfx::NativeCursor invisible_cursor(ui::CursorType::NONE); |
image_cursors_->SetPlatformCursor(&invisible_cursor); |
ApplyCursor(invisible_cursor); |
} |
@@ -308,7 +308,7 @@ void ShellDesktopControllerAura::InitWindowManager() { |
new ShellNativeCursorManager(host_.get())))); |
cursor_manager_->SetDisplay( |
display::Screen::GetScreen()->GetPrimaryDisplay()); |
- cursor_manager_->SetCursor(ui::kCursorPointer); |
+ cursor_manager_->SetCursor(ui::CursorType::POINTER); |
aura::client::SetCursorClient(host_->window(), cursor_manager_.get()); |
user_activity_detector_.reset(new ui::UserActivityDetector); |