| Index: content/browser/renderer_host/render_widget_host_view_aura.cc
|
| diff --git a/content/browser/renderer_host/render_widget_host_view_aura.cc b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| index d851114e35387c474bcb1d78be82a4e67f83b716..8962d028c19ee843196fa847eb9509fff9fa2914 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
|
| @@ -921,7 +921,7 @@ bool RenderWidgetHostViewAura::OnKeyEvent(aura::KeyEvent* event) {
|
|
|
| gfx::NativeCursor RenderWidgetHostViewAura::GetCursor(const gfx::Point& point) {
|
| if (mouse_locked_)
|
| - return aura::kCursorNone;
|
| + return ui::kCursorNone;
|
| return current_cursor_.GetNativeCursor();
|
| }
|
|
|
| @@ -1130,8 +1130,8 @@ void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() {
|
| return;
|
|
|
| gfx::NativeCursor cursor = current_cursor_.GetNativeCursor();
|
| - if (is_loading_ && cursor == aura::kCursorPointer)
|
| - cursor = aura::kCursorProgress;
|
| + if (is_loading_ && cursor == ui::kCursorPointer)
|
| + cursor = ui::kCursorProgress;
|
|
|
| root_window->SetCursor(cursor);
|
| }
|
|
|