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

Unified Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 11090068: When starting a provisional load include the parent frame ID in the IPC and pass it down the th WCO… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updatess Created 8 years, 2 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/renderer_host/render_view_host_impl.cc
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
index 37f9f645e9d6b707b3dd13172d99b9034d110fcf..6393f717c75263bb8a56797cfda32ff0bda0da08 100644
--- a/content/browser/renderer_host/render_view_host_impl.cc
+++ b/content/browser/renderer_host/render_view_host_impl.cc
@@ -1166,11 +1166,12 @@ void RenderViewHostImpl::OnMsgRenderViewGone(int status, int exit_code) {
void RenderViewHostImpl::OnMsgDidStartProvisionalLoadForFrame(
int64 frame_id,
+ int64 parent_frame_id,
bool is_main_frame,
const GURL& opener_url,
const GURL& url) {
delegate_->DidStartProvisionalLoadForFrame(
- this, frame_id, is_main_frame, opener_url, url);
+ this, frame_id, parent_frame_id, is_main_frame, opener_url, url);
}
void RenderViewHostImpl::OnMsgDidRedirectProvisionalLoad(
« no previous file with comments | « content/browser/renderer_host/render_view_host_impl.h ('k') | content/browser/renderer_host/test_render_view_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698