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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 2535483002: Plumb site engagement to the renderer process. (Closed)
Patch Set: Rebase. Fix Win compile Created 4 years, 1 month 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/renderer/render_thread_impl.cc
diff --git a/content/renderer/render_thread_impl.cc b/content/renderer/render_thread_impl.cc
index e1e3b2cdc192ecbc70c50c2d1d32e989d53a8a58..33873cefd1d572e183f756da44149f825b616a4e 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -353,7 +353,7 @@ class FrameFactoryImpl : public mojom::FrameFactory {
return;
}
- frame->Bind(std::move(frame_request), std::move(frame_host));
+ frame->BindFrame(std::move(frame_request), std::move(frame_host));
}
private:
@@ -1104,7 +1104,7 @@ void RenderThreadImpl::AddRoute(int32_t routing_id, IPC::Listener* listener) {
return;
scoped_refptr<PendingFrameCreate> create(it->second);
- frame->Bind(it->second->TakeFrameRequest(), it->second->TakeFrameHost());
+ frame->BindFrame(it->second->TakeFrameRequest(), it->second->TakeFrameHost());
pending_frame_creates_.erase(it);
}

Powered by Google App Engine
This is Rietveld 408576698