| 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 82d05658afb54590ed828746a0b6399498dc11f3..3043859ecbfd53d5360cb05c63ca71e48ced5995 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(
|
|
|