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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest_manager.cc

Issue 100473010: Adding RenderWidgetHostViewChildFrame for OOPIF view. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: constructor rated explicit Created 6 years, 12 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
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(

Powered by Google App Engine
This is Rietveld 408576698