diff options
author | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 04:24:32 +0000 |
---|---|---|
committer | piman@chromium.org <piman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 04:24:32 +0000 |
commit | 7de8fb7a62c99cbbdb8b2b3186df29fc1286cc1d (patch) | |
tree | 6e95febef314dcd2ff19e1627c99668f0f493a1b /content/plugin/webplugin_proxy.cc | |
parent | aff93c9850c1d90ba05019e346246acaf56180f1 (diff) | |
download | chromium_src-7de8fb7a62c99cbbdb8b2b3186df29fc1286cc1d.zip chromium_src-7de8fb7a62c99cbbdb8b2b3186df29fc1286cc1d.tar.gz chromium_src-7de8fb7a62c99cbbdb8b2b3186df29fc1286cc1d.tar.bz2 |
mac: fix flash videos with --disable-composited-core-animation-plugins
http://codereview.chromium.org/9194005 Missed one renaming. This fixes it.
BUG=117916
TEST=chrome --disable-composited-core-animation-plugins, load youtube videos
Review URL: http://codereview.chromium.org/9693031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126560 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin/webplugin_proxy.cc')
-rw-r--r-- | content/plugin/webplugin_proxy.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/plugin/webplugin_proxy.cc b/content/plugin/webplugin_proxy.cc index 0b88233..919f847 100644 --- a/content/plugin/webplugin_proxy.cc +++ b/content/plugin/webplugin_proxy.cc @@ -685,9 +685,9 @@ WebPluginAcceleratedSurface* WebPluginProxy::GetAcceleratedSurface( } void WebPluginProxy::AcceleratedFrameBuffersDidSwap( - gfx::PluginWindowHandle window, uint64 surface_id) { + gfx::PluginWindowHandle window, uint64 surface_handle) { Send(new PluginHostMsg_AcceleratedSurfaceBuffersSwapped( - route_id_, window, surface_id)); + route_id_, window, surface_handle)); } void WebPluginProxy::SetAcceleratedSurface( |