| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 5a712ff70fb765f1d1ff3bd3ab899cac142567b8..890301a9f27322eeb1052b4637ac56194297805a 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -2103,18 +2103,17 @@ void WebContentsImpl::DidRedirectProvisionalLoad(
|
| }
|
|
|
| void WebContentsImpl::DidCommitProvisionalLoad(
|
| - int64 frame_id,
|
| + RenderFrameHostImpl* render_frame_host,
|
| const base::string16& frame_unique_name,
|
| bool is_main_frame,
|
| const GURL& url,
|
| - PageTransition transition_type,
|
| - RenderFrameHostImpl* render_frame_host) {
|
| + PageTransition transition_type) {
|
| RenderViewHost* render_view_host = render_frame_host->render_view_host();
|
| // Notify observers about the commit of the provisional load.
|
| FOR_EACH_OBSERVER(
|
| WebContentsObserver,
|
| observers_,
|
| - DidCommitProvisionalLoadForFrame(frame_id,
|
| + DidCommitProvisionalLoadForFrame(render_frame_host->GetRoutingID(),
|
| frame_unique_name,
|
| is_main_frame,
|
| url,
|
|
|