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

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1382593004: Allow out-of-process iframes to update the mouse cursor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits addressed Created 5 years, 2 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: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index d53a8a73c432037dc734dc2e4868b9d675873f84..3fa41fea03c6eade8d4a3c9e1ddf7fcf4484629b 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -2950,7 +2950,7 @@ void FrameView::setCursor(const Cursor& cursor)
Page* page = frame().page();
if (!page || !page->settings().deviceSupportsMouse())
return;
- page->chromeClient().setCursor(cursor);
+ page->chromeClient().setCursor(cursor, m_frame->localFrameRoot());
}
void FrameView::frameRectsChanged()
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | third_party/WebKit/Source/core/loader/EmptyClients.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698