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

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 270883003: Decouple RVH creation from CrossProcessFrameConnector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index f9e19e6cb70b888ff6a7c03f464086c824c1e4fb..73996c11a1faba1fa74676d111b0e7c0e0a3cc5f 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -253,6 +253,11 @@ bool RenderFrameHostImpl::OnMessageReceived(const IPC::Message &msg) {
}
}
+ if (msg.type() == FrameHostMsg_InitializeChildFrame::ID) {
+ LOG(ERROR) << "RFH::OnMessageReceived: [" << this << "]: "
+ << "FrameHostMsg_InitializeChildFrame";
+ }
+
if (delegate_->OnMessageReceived(this, msg))
return true;

Powered by Google App Engine
This is Rietveld 408576698