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

Unified Diff: content/renderer/render_thread_impl.cc

Issue 2535483002: Plumb site engagement to the renderer process. (Closed)
Patch Set: Address comments Created 4 years 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 c6b39b899c55866dc35cbf6072b6e57d78e847eb..05374679d4b383e266356684701cecdf472c6b89 100644
--- a/content/renderer/render_thread_impl.cc
+++ b/content/renderer/render_thread_impl.cc
@@ -352,7 +352,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:
@@ -1101,7 +1101,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