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

Unified Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 10534103: aura: Always show normal pointer cursor when page is loading. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch Created 8 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 c3405a6197858354e26d9f73adfeb68a1c8df457..e96b017891cb311530f28ecdb41b4ab80b2cd8ea 100644
--- a/content/browser/renderer_host/render_widget_host_view_aura.cc
+++ b/content/browser/renderer_host/render_widget_host_view_aura.cc
@@ -1227,8 +1227,8 @@ void RenderWidgetHostViewAura::UpdateCursorIfOverSelf() {
return;
gfx::NativeCursor cursor = current_cursor_.GetNativeCursor();
- if (is_loading_ && cursor == ui::kCursorPointer)
- cursor = ui::kCursorProgress;
+ if (is_loading_)
+ cursor = ui::kCursorPointer;
root_window->SetCursor(cursor);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698