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

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

Issue 556703004: Remove page id from FrameNavigateParams. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes Created 6 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
« no previous file with comments | « content/browser/frame_host/navigator_impl.h ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/navigator_impl.cc
diff --git a/content/browser/frame_host/navigator_impl.cc b/content/browser/frame_host/navigator_impl.cc
index bae6224b0b96d2aafa6fd4e3cb45db2554a667b6..b1d35b2a344bb4118c6a43be52f533c880aa2345 100644
--- a/content/browser/frame_host/navigator_impl.cc
+++ b/content/browser/frame_host/navigator_impl.cc
@@ -462,6 +462,7 @@ bool NavigatorImpl::NavigateToPendingEntry(
void NavigatorImpl::DidNavigate(
RenderFrameHostImpl* render_frame_host,
+ int32 page_id,
const FrameHostMsg_DidCommitProvisionalLoad_Params& input_params) {
// PlzNavigate
// The navigation request has been committed so the browser process doesn't
@@ -552,8 +553,8 @@ void NavigatorImpl::DidNavigate(
delegate_->SetMainFrameMimeType(params.contents_mime_type);
LoadCommittedDetails details;
- bool did_navigate = controller_->RendererDidNavigate(render_frame_host,
- params, &details);
+ bool did_navigate = controller_->RendererDidNavigate(
+ render_frame_host, page_id, params, &details);
// For now, keep track of each frame's URL in its FrameTreeNode. This lets
// us estimate our process count for implementing OOP iframes.
« no previous file with comments | « content/browser/frame_host/navigator_impl.h ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698