[Webkit-unassigned] [Bug 60210] REGRESSION (WebKit2): Windowed plugins don't scroll at the same speed as the rest of the page
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed May 4 15:23:17 PDT 2011
https://bugs.webkit.org/show_bug.cgi?id=60210
--- Comment #4 from Anders Carlsson <andersca at apple.com> 2011-05-04 15:23:17 PST ---
(From update of attachment 92322)
View in context: https://bugs.webkit.org/attachment.cgi?id=92322&action=review
> Source/WebKit2/UIProcess/win/WebView.cpp:1560
> + HashMap<HWND, ChildWindowGeometry>::const_iterator end = geometriesToUpdate.end();
> + for (HashMap<HWND, ChildWindowGeometry>::const_iterator it = geometriesToUpdate.begin(); it != end; ++it) {
In WebKit2 we declare both iterators inside the for loop:
HashMap<HWND, ChildWindowGeometry>::const_iterator it = geometriesToUpdate.begin(), end = geometriesToUpdate.end();
> Source/WebKit2/WebProcess/Plugins/PluginController.h:93
> + virtual void scheduleWindowedPluginGeometryUpdate(HWND, const WebCore::IntRect& newRectInParentClientCoordinates, const WebCore::IntRect& clipRectInPluginWindowCoordinates) = 0;
Please add a comment to indicate what this function does, like with nativeParentWindow().
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list