| Index: content/browser/frame_host/interstitial_page_impl.cc | 
| diff --git a/content/browser/frame_host/interstitial_page_impl.cc b/content/browser/frame_host/interstitial_page_impl.cc | 
| index 68991492d83cb1959b6f064396b87980e0fdc491..8b249e924ecc4b3d9e983a937c61a4e2400424af 100644 | 
| --- a/content/browser/frame_host/interstitial_page_impl.cc | 
| +++ b/content/browser/frame_host/interstitial_page_impl.cc | 
| @@ -159,7 +159,9 @@ InterstitialPageImpl::InterstitialPageImpl( | 
| // NavigationControllerImpl to the Navigator, which is separate from | 
| // the WebContents one, so we can enforce no navigation policy here. | 
| // While we get the code to a point to do this, pass NULL for it. | 
| -      frame_tree_(new Navigator(NULL, this)), | 
| +      // TODO(creis): We will also need to pass delegates for the RVHM as we | 
| +      // start to use it. | 
| +      frame_tree_(new Navigator(NULL, this), NULL, NULL, NULL), | 
| original_child_id_(web_contents->GetRenderProcessHost()->GetID()), | 
| original_rvh_id_(web_contents->GetRenderViewHost()->GetRoutingID()), | 
| should_revert_web_contents_title_(false), | 
|  |