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

Unified Diff: chrome/renderer/webplugin_delegate_proxy.cc

Issue 203013: Fix regression of transparent plugins not displaying correctly. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 3 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: chrome/renderer/webplugin_delegate_proxy.cc
===================================================================
--- chrome/renderer/webplugin_delegate_proxy.cc (revision 25792)
+++ chrome/renderer/webplugin_delegate_proxy.cc (working copy)
@@ -426,11 +426,11 @@
if (bitmaps_changed)
#endif
{
- if (transport_store_.get()) {
+ if (transport_store_.get())
param.windowless_buffer = transport_store_->handle();
- } else if (background_store_.get()) {
+
+ if (background_store_.get())
param.background_buffer = background_store_->handle();
- }
}
IPC::Message* msg;
« 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