| Index: content/browser/browser_plugin/browser_plugin_guest_manager.cc
|
| diff --git a/content/browser/browser_plugin/browser_plugin_guest_manager.cc b/content/browser/browser_plugin/browser_plugin_guest_manager.cc
|
| index d16d11af673f018ee81019f6e65653ead611301e..8fb51b664a83b1bb6bb5bbec053a8bf9d05efff5 100644
|
| --- a/content/browser/browser_plugin/browser_plugin_guest_manager.cc
|
| +++ b/content/browser/browser_plugin/browser_plugin_guest_manager.cc
|
| @@ -217,14 +217,11 @@ SiteInstance* BrowserPluginGuestManager::GetGuestSiteInstance(
|
| // otherwise the ACK is handled by the guest.
|
| void BrowserPluginGuestManager::OnUnhandledSwapBuffersACK(
|
| int instance_id,
|
| - int route_id,
|
| - int gpu_host_id,
|
| - const std::string& mailbox_name,
|
| - uint32 sync_point) {
|
| - BrowserPluginGuest::AcknowledgeBufferPresent(route_id,
|
| - gpu_host_id,
|
| - mailbox_name,
|
| - sync_point);
|
| + const FrameHostMsg_BuffersSwappedACK_Params& params) {
|
| + BrowserPluginGuest::AcknowledgeBufferPresent(params.gpu_route_id,
|
| + params.gpu_host_id,
|
| + params.mailbox_name,
|
| + params.sync_point);
|
| }
|
|
|
| void BrowserPluginGuestManager::DidSendScreenRects(
|
|
|