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

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

Issue 9693031: mac: fix flash videos with --disable-composited-core-animation-plugins (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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 | « content/browser/renderer_host/render_widget_host_impl.h ('k') | content/common/plugin_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_widget_host_mac.cc
diff --git a/content/browser/renderer_host/render_widget_host_mac.cc b/content/browser/renderer_host/render_widget_host_mac.cc
index 7ecbb933ad47493efe01a7119716510ef7ed6337..34b7f69db6d387f913de9ba5550a2f3bab5ec5ad 100644
--- a/content/browser/renderer_host/render_widget_host_mac.cc
+++ b/content/browser/renderer_host/render_widget_host_mac.cc
@@ -63,14 +63,14 @@ void RenderWidgetHostImpl::OnAcceleratedSurfaceSetTransportDIB(
}
void RenderWidgetHostImpl::OnAcceleratedSurfaceBuffersSwapped(
- gfx::PluginWindowHandle window, uint64 surface_id) {
+ gfx::PluginWindowHandle window, uint64 surface_handle) {
if (view_) {
// This code path could be updated to implement flow control for
// updating of accelerated plugins as well. However, if we add support
// for composited plugins then this is not necessary.
GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params params;
params.window = window;
- params.surface_id = surface_id;
+ params.surface_handle = surface_handle;
view_->AcceleratedSurfaceBuffersSwapped(params, 0);
}
}
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.h ('k') | content/common/plugin_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698