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

Unified Diff: chrome/browser/render_widget_host.cc

Issue 18637: More speedup of scrolling when many windowed plugins in a page. Scrolling is... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: 'spell Created 11 years, 11 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: chrome/browser/render_widget_host.cc
===================================================================
--- chrome/browser/render_widget_host.cc (revision 8294)
+++ chrome/browser/render_widget_host.cc (working copy)
@@ -448,10 +448,7 @@
}
for (size_t i = 0; i < plugin_window_moves.size(); ++i) {
- // Don't invalidate now because that would result in cross process calls
- // that make scrolling slow. Instead the window is invalidated
- // asynchronously by the plugin code.
- unsigned long flags = SWP_NOREDRAW;
+ unsigned long flags = 0;
darin (slow to review) 2009/01/22 00:40:03 maybe add some comments here about the choice of f
jam 2009/01/22 01:03:10 I was wondering about whether to add a comment or
const WebPluginGeometry& move = plugin_window_moves[i];
if (move.visible)

Powered by Google App Engine
This is Rietveld 408576698