aura: Always show normal pointer cursor when page is loading.

BUG=131869
TEST=manual


Review URL: https://chromiumcodereview.appspot.com/10534103

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@141626 0039d316-1c4b-4281-b951-d872f2087c98
parent 8e85783c
...@@ -1227,8 +1227,8 @@ void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() { ...@@ -1227,8 +1227,8 @@ void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() {
return; return;
gfx::NativeCursor cursor = current_cursor_.GetNativeCursor(); gfx::NativeCursor cursor = current_cursor_.GetNativeCursor();
if (is_loading_ && cursor == ui::kCursorPointer) if (is_loading_)
cursor = ui::kCursorProgress; cursor = ui::kCursorPointer;
root_window->SetCursor(cursor); root_window->SetCursor(cursor);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment